0.0.0 • Published 12 years ago

cmd-exists v0.0.0

Weekly downloads
1
License
-
Repository
-
Last release
12 years ago

cmd-exists

checks if system can run the command

installation

npm install cmd-exists

usage

    var exists = require('cmd-exists');

    exists('sass', 'compass', function (results) {
        // results = { sass: true, compass: true }
    });

or

    var exists = require('cmd-exists');

    exists(['sass', 'compass'], function (results) {
        // results = { sass: true, compass: true }
    });