Files
rappaurio-sae501_502/app/node_modules/cejs/extension/children2.js
2023-09-25 09:41:55 +02:00

19 lines
818 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.children2',
// dependency.
require : 'extension.parent2.parent2_function',
// source code.
code : function() {
// requiring
var parent2_function = this.r('parent2_function');
function children2_function() {
parent2_function('children2_function');
};
return [children2_function];
}
});