non_std 0.1.4

Collection of general purpose tools for solving problems. Fundamentally extend the language without spoiling, so may be used solely or in conjunction with another module of such kind.
Documentation

let _ = require( 'wTools' );
_.include( 'wFiles' );

program();

function program()
{

  _.time.out( 100, function timeOut1()
  {
    console.log( 'sourcePath::timeout ' + _.procedure.activeProcedure._sourcePath );
    throw _.error.err( 'timeOut1' );
  } );

  console.log( 'sourcePath::program ' + _.procedure.activeProcedure._sourcePath );
}

/*
  In case of time out native async stack has impurities what decreases its readability.
  Synthetic async stack is much easier to read.
*/