UNPKG

babel-plugin-transform-amd-system-wrapper

Version:
18 lines (15 loc) 174 B
define('a', { a: 'a' }); define('b', { b: 'b' }); define(['c'], function(c) { return c; }); define('c', ['b'], function(b) { return { b: b, c: 'c' }; });