wtest 0.1.2

Tools for writing and running tests.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if( typeof module !== 'undefined' )
require( 'wTools' );
let _ = wTools;

let arrayMake = require( './4_implementArrayMake.s' );

console.log( '5_implementArrayFrom.s' );

function arrayFrom( src )
{
  if( _.arrayIs( src ) )
  return src;
  return arrayMake( src );
}

module.exports = arrayFrom;