paw-base-importer
Version:
An adapter for api-flow made for the Paw App
18 lines (17 loc) • 572 B
JavaScript
;
if (typeof registerImporter === 'undefined' || typeof DynamicValue === 'undefined' || typeof DynamicString === 'undefined') {
var mocks = require('./PawMocks.js');
module.exports = {
registerImporter: mocks.registerImporter,
DynamicValue: mocks.DynamicValue,
DynamicString: mocks.DynamicString
};
} else {
/* eslint-disable no-undef */
module.exports = {
registerImporter: registerImporter,
DynamicValue: DynamicValue,
DynamicString: DynamicString
};
/* eslint-enable no-undef */
}