multilayer 0.1.3

Protocol of modularity unifying interface of a module and introducing layers.
Documentation
1
2
3
4
5
6
7
let arrayMake = require( './4_implementArrayMake.s' );

let src = [ 1, 2, 3 ];
let got = arrayMake( src );

console.log( got ); /* log : [ 1, 2, 3 ] */
console.log( got === src ); /* log : false */