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

21 lines
1016 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.loop2',
// dependency.
require : 'extension.loop1.loop1_function',
// source code.
code : function() {
var library_namespace = this.base,
// requiring
loop1_function = this.r('loop1_function');
function loop2_function(caller) {
library_namespace.debug('Call loop1_function..', 1, 'loop2_function');
loop1_function(caller || 'loop2_function');
};
return [loop2_function];
}
});