9 lines
202 B
JavaScript
9 lines
202 B
JavaScript
define(['../util/helper', 'require'], function(helper, require) {
|
|
var helperPath = require.toUrl('../util/helper');
|
|
return {
|
|
name: 'ext',
|
|
helperPath: helperPath,
|
|
helper: helper
|
|
};
|
|
});
|