utils-compare

0.1.0 • Public • Published

utils-compare NPM version

Compare function that accepts two objects (a, b) and returns 1 if a >= b otherwise -1.

Quickstart

Open the command prompt in the root of your project and run the following command:

npm i utils-compare --save-dev

Usage

Example "globbing" utility, using the compare function to sort the result:

var compareFn = require('utils-compare');
 
var globFiles = function (src, compare_fn) {
  compare_fn = compareFn(compare_fn);
  src.map(function (path) {
    index += 1;
    return {
      index: index,
      path: path,
      content: grunt.file.read(path)
    };
  }).sort(compare_fn).map(function (foo) {
     // do stuff
  });
};

Author

License and Copyright

Licensed under the MIT License Copyright (c) Jon Schlinkert, contributors.

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i utils-compare

    Weekly Downloads

    3

    Version

    0.1.0

    License

    none

    Last publish

    Collaborators

    • doowb
    • jonschlinkert