UNPKG

cost

Version:

A CLI tool for checking the size of files, after minification and gzipping.

14 lines (12 loc) 260 B
'use strict'; var Promise = require('bluebird'); module.exports = function (options) { return new Promise(function (resolve, reject) { resolve({ path: options.path, value: options.value, minify: options.minify, gzip: options.gzip }); }); };