UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

17 lines (14 loc) 356 B
#!/usr/bin/env node 'use strict'; var looseEnvify = require('./'); var fs = require('fs'); if (process.argv[2]) { fs.createReadStream(process.argv[2], {encoding: 'utf8'}) .pipe(looseEnvify(process.argv[2])) .pipe(process.stdout); } else { process.stdin.resume() process.stdin .pipe(looseEnvify(__filename)) .pipe(process.stdout); }