UNPKG

lfr-amd-loader

Version:

AMD Loader with support for combo URL and conditional loading

36 lines (32 loc) 635 B
'use strict'; import { log as logBase } from 'aui-base'; import { log as logCore } from 'aui-core'; import { log as logEvent } from 'aui-event'; function log(text) { logEvent('module aui-dialog says via aui-event: ' + text); logBase('in module aui-dialog logBase is available: ' + text); logCore('in module aui-dialog logCore is available: ' + text); } export { log }; // (function META() { // return { // condition: { // test: function() { // return true; // }, // trigger: 'nate' // }, // path: 'nate.js' // }; // });