UNPKG

indent.js

Version:

Fast minimalistic pure indentation of JavaScript, CSS, and HTML.

11 lines (9 loc) 230 B
var fs = require('fs'); var indent = require('./../lib/indent.js'); fs.readFile( __dirname + '/file.js', function (err, data) { if (err) throw err; console.log( indent.js(data.toString(), ' ') ); });