Sha256: 9c90647b8788d8f655b78ade6bcbefd59d767b12a5328df0daf186c0dde79c3e

Contents?: true

Size: 480 Bytes

Versions: 9

Compression:

Stored size: 480 Bytes

Contents

/**
  To run this file just type `spade ./single-file.js`.  It should just write
  out to the console.  Note that since this file is not included inside of a
  package, the only packages available are those installed on the system.

  The ivory package is a set of standardized APIs for accessing the filesystem
  
  Usage:  spade ./single-file.js
*/
/*globals $fs */

require('ivory'); // defines $fs and other utils

var data = $fs.STDIN.read(); 
console.log(data);





    
  

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
spade-0.1.0 examples/single-file.js
spade-0.0.8.1 examples/single-file.js
spade-0.0.7 examples/single-file.js
spade-0.0.6 examples/single-file.js
spade-0.0.5 examples/single-file.js
spade-0.0.4 examples/single-file.js
spade-0.0.3 examples/single-file.js
spade-0.0.2 examples/single-file.js
spade-0.0.1 examples/single-file.js