UNPKG

314 BJavaScriptView Raw
1'use strict';
2
3// This is a custom Jest transformer turning style imports into empty objects.
4// http://facebook.github.io/jest/docs/en/webpack.html
5
6module.exports = {
7 process() {
8 return 'module.exports = {};';
9 },
10 getCacheKey() {
11 // The output is always the same.
12 return 'cssTransform';
13 },
14};