UNPKG

289 BJavaScriptView Raw
1'use strict';
2
3// 把 po 文件转换成一个空对象
4// http://facebook.github.io/jest/docs/tutorial-webpack.html
5
6module.exports = {
7 process() {
8 return 'module.exports = { "": {} };';
9 },
10 getCacheKey() {
11 // The output is always the same.
12 return 'poTransform';
13 },
14};