UNPKG

atf

Version:

atf (above-the-fold) prints out above-the-fold css for whatever site you want.

17 lines (14 loc) 279 B
#!/usr/bin/env node 'use strict'; var meow = require('meow'); var aboveTheFoldPhantomjs = require('./'); var cli = meow({ help: [ 'Usage', ' atf <input>', '', 'Example', ' atf http://somesite.com' ].join('\n') }); aboveTheFoldPhantomjs(cli.input[0]);