Artifact 7c3346f0c4e672b11b02905475e4a85a38ead0c9:
- File wiki_references/2017/software/banking/Interledger/src_from_GitHub/the_repository_clones/ilp-kit/client/config/jest/fileTransform.js — part of check-in [3d7c129ddd] at 2018-03-21 18:18:26 on branch trunk — banking & unclassified_references (user: martin_vahi, size: 311) [annotate] [blame] [check-ins using] [more...]
'use strict'; const path = require('path'); // This is a custom Jest transformer turning file imports into filenames. // http://facebook.github.io/jest/docs/tutorial-webpack.html module.exports = { process(src, filename) { return `module.exports = ${JSON.stringify(path.basename(filename))};`; }, };