Files
rappaurio-sae501_502/app/node_modules/cejs/extension/children1.js
2023-09-25 13:27:24 +02:00

19 lines
820 B
JavaScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

'use strict';
typeof CeL === 'function' && CeL.run({
// name/id.
name : 'extension.children1',
// dependency.
require : 'extension.parent2.parent2_function',
// source code.
code : function() {
// requiring
var parent2_function = this.r('parent2_function');
function children1_function() {
parent2_function('children1_function');
};
return [children1_function];
}
});