Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

utils

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

utils

Fast, generic JavaScript/node.js utility functions.

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19K
increased by1.32%
Maintainers
1
Weekly downloads
 
Created
Source

utils NPM version Build Status

Fast, generic JavaScript/node.js utility functions.

Install with npm

npm i utils --save

TOC

(Table of contents generated by verb)

Usage

Utils grouped by collection

The top level export gives you an object with utils grouped into collections, like array, object, math, etc:

var utils = require('utils');
//=> {array: {flatten: [function], ...}, collection: {...}}

See example.md for an example of the utils object.

Get all utils on one object

If you want all utils on a single object (e.g. not grouped by collection):

// all utils are on the `_` property
var utils = require('utils')._;

Only get a specific collection

If you just want the string or object utils:

var string = require('utils').string;
var object = require('utils').object;

API

.after

Returns all of the items in an array after the specified index.

  • array {Array}: Collection
  • n {Number}: Starting index (number of items to exclude)
  • returns {Array}: Array exluding n items.
after(['a', 'b', 'c'], 1)
//=> ['c']

.arrayify

Cast the give value to an array.

  • val {*}
  • returns: {Array}
arrayify('abc')
//=> ['abc']

arrayify(['abc'])
//=> ['abc']

.before

Returns all of the items in an array up to the specified number Opposite of <%= after() %.

  • array {Array}
  • n {Number}
  • returns {Array}: Array excluding items after the given number.
before(['a', 'b', 'c'], 2)
//=> ['a', 'b']

.compact

Remove all falsey values from an array.

  • arr {Array}
  • returns: {Array}
compact([null, a, undefined, 0, false, b, c, '']);
//=> [a, b, c]

.difference

Return the difference between the first array and additional arrays.

  • a {Array}
  • b {Array}
  • returns: {Array}
var a = ['a', 'b', 'c', 'd'];
var b = ['b', 'c'];

diff(a, b);
//=> ['a', 'd']

.each

Loop over each item in an array and call the given function on every element.

  • array {Array}
  • fn {Function}
  • thisArg {Object}: Optionally pass a thisArg to be used as the context in which to call the function.
  • returns: {Array}
each(['a', 'b', 'c'], function (ele) {
  return ele + ele;
});
//=> ['aa', 'bb', 'cc']

each(['a', 'b', 'c'], function (ele, i) {
  return i + ele;
});
//=> ['0a', '1b', '2c']

.first

Returns the first item, or first n items of an array.

  • array {Array}
  • n {Number}: Number of items to return, starting at 0.
  • returns: {Array}
first(['a', 'b', 'c', 'd', 'e'], 2)
//=> ['a', 'b']

.flatten

Recursively flatten an array or arrays. Uses the fastest implementation of array flatten for node.js

  • array {Array}
  • returns {Array}: Flattened array
flatten(['a', ['b', ['c']], 'd', ['e']]);
//=> ['a', 'b', 'c', 'd', 'e']

.forEach

Loop over each item in an array and call the given function on every element.

  • array {Array}
  • fn {Function}
  • thisArg {Object}: Optionally pass a thisArg to be used as the context in which to call the function.
  • returns: {Array}
forEach(['a', 'b', 'c'], function (ele) {
  return ele + ele;
});
//=> ['aa', 'bb', 'cc']

forEach(['a', 'b', 'c'], function (ele, i) {
  return i + ele;
});
//=> ['0a', '1b', '2c']

.isArray

Returns true if the given value is an array.

  • value {Array}: Value to test.
isArray(1);
//=> 'false'

isArray([1]);
//=> 'true'

.last

Returns the last item, or last n items of an array.

  • array {Array}
  • n {Number}: Number of items to return, starting with the last item.
  • returns: {Array}
last(['a', 'b', 'c', 'd', 'e'], 2)
//=> ['d', 'e']

.map

Returns a new array with the results of calling the given function on every element in the array. This is a faster, node.js focused alternative to JavaScript's native array map.

  • array {Array}
  • fn {Function}
  • returns: {Array}
map(['a', 'b', 'c'], function (ele) {
  return ele + ele;
});
//=> ['aa', 'bb', 'cc']

map(['a', 'b', 'c'], function (ele, i) {
  return i + ele;
});
//=> ['0a', '1b', '2c']

.slice

Alternative to JavaScript's native array-slice method. Slices array from the start index up to but not including the end index.

  • array {Array}: the array to slice.
  • start {Number}: Optionally define the starting index.
  • end {Number}: Optionally define the ending index.
var arr = ['a', 'b', 'd', 'e', 'f', 'g', 'h', 'i', 'j'];

slice(arr, 3, 6);
//=> ['e', 'f', 'g']

.union

Return an array free of duplicate values. Fastest ES5 implementation.

  • array {Array}: The array to uniquify
  • returns {Array}: With all union values.
union(['a', 'b', 'c', 'c']);
//=> ['a', 'b', 'c']

.unique

Return an array free of duplicate values. Fastest ES5 implementation.

  • array {Array}: The array to uniquify
  • returns {Array}: With all unique values.
unique(['a', 'b', 'c', 'c']);
//=> ['a', 'b', 'c']

.any

  • value {*}
  • target {*}
  • options {Object}

Returns true if value exists in the given string, array or object. See [any] for documentation.

.contains

  • collection {Array|Object}
  • string {*}
  • returns: {Boolean}

Return true if collection contains value

.tryReaddir

  • dir {String}: Starting directory
  • returns {Array}: Array of files.

Try to read the given directory. Wraps fs.readdirSync() with a try/catch, so it fails silently instead of throwing when the directory doesn't exist.

.tryRequire

  • fp {String}: File path of the file to require
  • returns {*}: Returns the module function/object, or null if not found.

Try to require the given file, returning null if not successful instead of throwing an error.

.hasValues

Returns true if any value exists, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays.

  • object {Object}: The object to check for value
  • value {*}: the value to look for
  • returns {Boolean}: True if any values exists.
utils.lang.hasValues('a');
//=> true

utils.lang.hasValues('');
//=> false

utils.lang.hasValues(1);
//=> true

utils.lang.hasValues({a: 'a'}});
//=> true

utils.lang.hasValues({}});
//=> false

utils.lang.hasValues(['a']);
//=> true

.isEmpty

Returns true if the given value is empty, false if any value exists. Works for booleans, functions, numbers, strings, nulls, objects and arrays.

  • object {Object}: The object to check for value
  • value {*}: the value to look for
  • returns {Boolean}: False if any values exists.
utils.lang.isEmpty('a');
//=> true

utils.lang.isEmpty('');
//=> false

utils.lang.isEmpty(1);
//=> true

utils.lang.isEmpty({a: 'a'}});
//=> true

utils.lang.isEmpty({}});
//=> false

utils.lang.isEmpty(['a']);
//=> true

.isObject

Return true if the given value is an object with keys.

  • value {Object}: The value to check.
  • returns: {Boolean}
isObject(['a', 'b', 'c'])
//=> 'false'

isObject({a: 'b'})
//=> 'true'

.isPlainObject

Return true if the given value is an object with keys.

  • value {Object}: The value to check.
  • returns: {Boolean}
isPlainObject(Object.create({}));
//=> true
isPlainObject(Object.create(Object.prototype));
//=> true
isPlainObject({foo: 'bar'});
//=> true
isPlainObject({});
//=> true

.sum

Returns the sum of all numbers in the given array.

  • array {Array}: Array of numbers to add up.
  • returns: {Number}
sum([1, 2, 3, 4, 5])
//=> '15'

.defaults

  • object {Object}: The target object. Pass an empty object to shallow clone.
  • objects {Object}
  • returns: {Object}

Extend object with properties of other objects

.extend

  • o {Object}: The target object. Pass an empty object to shallow clone.
  • objects {Object}
  • returns: {Object}

Extend o with properties of other objects.

.functions

Returns a copy of the given obj filtered to have only enumerable properties that have function values.

  • obj {Object}
  • returns: {Object}
functions({a: 'b', c: function() {}});
//=> {c: function() {}}

.hasOwn

Return true if key is an own, enumerable property of the given obj.

  • key {String}
  • obj {Object}: Optionally pass an object to check.
  • returns: {Boolean}
hasOwn(obj, key);

.keys

  • obj {Object}
  • returns {Array}: Array of keys.

Return an array of keys for the given obj. Uses Object.keys when available, otherwise falls back on forOwn.

.merge

  • o {Object}: The target object. Pass an empty object to shallow clone.
  • objects {Object}
  • returns: {Object}

Recursively combine the properties of o with the properties of other objects.

.methods

  • obj {Object}
  • returns: {Array}

Returns a list of all enumerable properties of obj that have function values

.camelcase

camelCase the characters in string.

  • string {String}: The string to camelcase.
  • returns: {String}
camelcase("foo bar baz");
//=> 'fooBarBaz'

.centerAlign

Center align the characters in a string using non-breaking spaces.

  • str {String}: The string to reverse.
  • returns {String}: Centered string.
centerAlign("abc");

.chop

Like trim, but removes both extraneous whitespace and non-word characters from the beginning and end of a string.

  • string {String}: The string to chop.
  • returns: {String}
chop("_ABC_");
//=> 'ABC'

chop("-ABC-");
//=> 'ABC'

chop(" ABC ");
//=> 'ABC'

.count

Count the number of occurrances of a substring within a string.

  • string {String}
  • substring {String}
  • returns {Number}: The occurances of substring in string
count("abcabcabc", "a");
//=> '3'

.dashcase

dash-case the characters in string. This is similar to [slugify], but [slugify] makes the string compatible to be used as a URL slug.

  • string {String}
  • returns: {String}
dashcase("a b.c d_e");
//=> 'a-b-c-d-e'

.dotcase

dot.case the characters in string.

  • string {String}
  • returns: {String}
dotcase("a-b-c d_e");
//=> 'a.b.c.d.e'

.ellipsis

Truncate a string to the specified length, and append it with an elipsis, .

  • str {String}
  • length {Number}: The desired length of the returned string.
  • ch {String}: Optionally pass custom characters to append. Default is .
  • returns {String}: The truncated string.
ellipsis("<span>foo bar baz</span>", 7);
//=> 'foo bar…'

.hyphenate

Replace spaces in a string with hyphens. This

  • string {String}
  • returns: {String}
hyphenate("a b c");
//=> 'a-b-c'

.isString

Returns true if the value is a string.

  • val {String}
  • returns {Boolean}: True if the value is a string.
isString('abc');
//=> 'true'

isString(null);
//=> 'false'

.pascalcase

PascalCase the characters in string.

  • string {String}
  • returns: {String}
pascalcase("foo bar baz");
//=> 'FooBarBaz'

.pathcase

path/case the characters in string.

  • string {String}
  • returns: {String}
pathcase("a-b-c d_e");
//=> 'a/b/c/d/e'

.replace

Replace occurrences of a with b.

  • str {String}
  • a {String|RegExp}: Can be a string or regexp.
  • b {String}
  • returns: {String}
replace("abcabc", /a/, "z");
//=> 'zbczbc'

.reverse

Reverse the characters in a string.

  • str {String}: The string to reverse.
  • returns: {String}
reverse("abc");
//=> 'cba'

.rightAlign

Right align the characters in a string using non-breaking spaces.

  • str {String}: The string to reverse.
  • returns {String}: Right-aligned string.
rightAlign(str);

.sentencecase

Sentence-case the characters in string.

  • string {String}
  • returns: {String}
sentencecase("foo bar baz.");
//=> 'Foo bar baz.'

.snakecase

snake_case the characters in string.

  • string {String}
  • returns: {String}
snakecase("a-b-c d_e");
//=> 'a_b_c_d_e'

.truncate

Truncate a string by removing all HTML tags and limiting the result to the specified length.

  • str {String}
  • length {Number}: The desired length of the returned string.
  • returns {String}: The truncated string.
truncate("<span>foo bar baz</span>", 7);
//=> 'foo bar'

.wordwrap

Wrap words to a specified width using [word-wrap].

  • string {String}: The string with words to wrap.
  • object {Options}: Options to pass to [word-wrap]
  • returns {String}: Formatted string.
wordwrap("a b c d e f", {width: 5, newline: '<br>  '});
//=> '  a b c <br>  d e f'

(API documentation generated by Verb)

Code coverage

Please help improve code coverage by adding unit tests.

-----------------------|-----------|-----------|-----------|-----------|
File                   |   % Stmts |% Branches |   % Funcs |   % Lines |
-----------------------|-----------|-----------|-----------|-----------|
   array/              |     82.29 |     71.67 |     92.31 |      82.8 |
      after.js         |       100 |        75 |       100 |       100 |
      arrayify.js      |       100 |       100 |       100 |       100 |
      before.js        |       100 |        75 |       100 |       100 |
      compact.js       |       100 |       100 |       100 |       100 |
      difference.js    |       100 |       100 |       100 |       100 |
      each.js          |       100 |       100 |       100 |       100 |
      first.js         |     88.89 |     83.33 |       100 |     88.24 |
      flatten.js       |       100 |       100 |       100 |       100 |
      forEach.js       |       100 |       100 |       100 |       100 |
      indexOf.js       |      7.69 |         0 |         0 |      8.33 |
      isArray.js       |       100 |       100 |       100 |       100 |
      last.js          |     88.89 |     83.33 |       100 |     88.24 |
      map.js           |       100 |       100 |       100 |       100 |
      slice.js         |       100 |       100 |       100 |       100 |
      sort.js          |     90.91 |      87.5 |       100 |     90.91 |
      union.js         |       100 |       100 |       100 |       100 |
      unique.js        |       100 |       100 |       100 |       100 |
   collection/         |        50 |         0 |         0 |        50 |
      any.js           |       100 |       100 |       100 |       100 |
      contains.js      |     42.86 |         0 |         0 |     42.86 |
   fs/                 |        80 |       100 |       100 |        80 |
      tryReaddir.js    |        80 |       100 |       100 |        80 |
      tryRequire.js    |        80 |       100 |       100 |        80 |
   lang/               |      87.5 |       100 |        50 |      87.5 |
      hasValues.js     |       100 |       100 |       100 |       100 |
      isEmpty.js       |     66.67 |       100 |         0 |     66.67 |
      isObject.js      |       100 |       100 |       100 |       100 |
      isPlainObject.js |       100 |       100 |       100 |       100 |
   math/               |       100 |       100 |       100 |       100 |
      sum.js           |       100 |       100 |       100 |       100 |
   object/             |        70 |     54.55 |     27.27 |     69.12 |
      defaults.js      |       100 |       100 |       100 |       100 |
      extend.js        |       100 |     83.33 |       100 |       100 |
      filter.js        |       100 |       100 |       100 |       100 |
      forIn.js         |       100 |       100 |       100 |       100 |
      forOwn.js        |       100 |       100 |       100 |       100 |
      functions.js     |     28.57 |         0 |         0 |     28.57 |
      hasOwn.js        |       100 |       100 |       100 |       100 |
      keys.js          |     33.33 |        50 |         0 |     33.33 |
      merge.js         |       100 |        75 |       100 |       100 |
      methods.js       |     28.57 |         0 |         0 |     28.57 |
      omit.js          |       100 |       100 |       100 |       100 |
      pick.js          |       100 |       100 |       100 |       100 |
      reduce.js        |       100 |       100 |       100 |       100 |
      some.js          |        30 |         0 |         0 |        30 |
   string/             |     99.27 |     96.77 |        96 |     99.09 |
      camelcase.js     |       100 |       100 |       100 |       100 |
      centerAlign.js   |       100 |       100 |       100 |       100 |
      chop.js          |       100 |       100 |       100 |       100 |
      count.js         |       100 |       100 |       100 |       100 |
      dashcase.js      |       100 |       100 |       100 |       100 |
      dotcase.js       |       100 |       100 |       100 |       100 |
      ellipsis.js      |       100 |       100 |       100 |       100 |
      hyphenate.js     |       100 |       100 |       100 |       100 |
      index.js         |       100 |       100 |       100 |       100 |
      isString.js      |       100 |       100 |       100 |       100 |
      pascalcase.js    |       100 |       100 |       100 |       100 |
      pathcase.js      |       100 |       100 |       100 |       100 |
      replace.js       |       100 |       100 |       100 |       100 |
      reverse.js       |       100 |       100 |       100 |       100 |
      rightAlign.js    |       100 |       100 |       100 |       100 |
      sentencecase.js  |       100 |       100 |       100 |       100 |
      slugify.js       |       100 |       100 |       100 |       100 |
      snakecase.js     |       100 |       100 |       100 |       100 |
      toString.js      |        50 |         0 |         0 |        50 |
      truncate.js      |       100 |       100 |       100 |       100 |
      wordwrap.js      |       100 |       100 |       100 |       100 |
-----------------------|-----------|-----------|-----------|-----------|
All files              |     86.43 |     79.05 |     76.79 |     85.34 |
-----------------------|-----------|-----------|-----------|-----------|

Running tests

Install dev dependencies:

npm i -d && npm test

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue

Adding utils

If you want to do a PR to add a util, please read the following first:

  • follow the same coding style as the rest of the library, same with code comments
  • add sufficient unit tests
  • Install dev dependencies and run verb
  • Look over the README to make sure that verb rendered out the docs with your method and code comments.

Adding external modules as dependencies

  • External modules will only be considered if they meet the same quality and coding standards as the rest of the library. At minimum this includes documentation, code comments, and unit tests. Benchmarks are also strongly preferred.

Updating the docs

Do not edit the readme manually since verb is used to generate documentation.

  • API docs: If you see an error in the API documentation, just update the code comments for that method, then run verb.
  • Everything else, please look over the .verb.md template to see where the error is, then run verb.

Running verb

Run verb to generate documentation:

npm i -d && verb

About

Why another utils lib?

  • I'm a node.js developer. I want fast, light, dependable utility functions for node.js projects.
  • Do you really need bloated, everything-but-the-kitchen-sink functions that are guaranteed to work with IE 4, for your Yeoman generator or gulp plugin!? Nonsense.
  • The benchmarks that accompany many of the functions in the library show that in some cases, the penalty for using such "kitchen-sink" code is a 2,000-5,000% reduction in speed. Sometimes greater.

Project goals

  • Fastest implementation of each method, without too much compromise. Covering uncommon cases is fine, but don't go overboard.
  • Clean well-documented, commented code.
  • When it makes sense, external libraries are used and exposed instead of writing new code.
  • Focus on node.js usage and projects that are likely to use a number of these utils in one project. If you only need one or two of these in a small project, don't use this. Use small modules that do only one thing.

This project depends on these great libraries:

  • any: Returns true if a value exists in the given string, array or object.
  • arr-diff: Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.
  • arr-flatten: Recursively flatten an array or arrays. This is the fastest implementation of array flatten.
  • arr-map: Faster, node.js focused alternative to JavaScript's native array map.
  • arr-union: Combines a list of arrays, returning a single array with unique values, using strict equality for comparisons.
  • array-each: Loop over each item in an array and call the given function on every element.
  • array-slice: Array-slice method. Slices array from the start index up to, but not including, the end index.
  • array-unique: Return an array free of duplicate values. Fastest ES5 implementation.
  • center-align: Center-align the text in a string.
  • export-dirs: Export directories and their files as node.js modules.
  • export-files: node.js utility for exporting a directory of files as modules.
  • for-in: Iterate over the own and inherited enumerable properties of an objecte, and return an object with properties that evaluate to true from the callback. Exit early by returning false. JavaScript/Node.js
  • for-own: Iterate over the own enumerable properties of an object, and return an object with properties that evaluate to true from the callback. Exit early by returning false. JavaScript/Node.js.
  • has-values: Returns true if any values exist, false if empty. Works for booleans, functions, numbers, strings, nulls, objects and arrays.
  • is-number: Returns true if the value is a number. comprehensive tests.
  • is-plain-object: Returns true if an object was created by the Object constructor.
  • kind-of: Get the native type of a value.
  • make-iterator: Convert an argument into a valid iterator. Based on the .makeIterator() implementation in mout https://github.com/mout/mout.
  • object.defaults: Like extend but only copies missing properties/values to the target object.
  • object.filter: Create a new object filtered to have only properties for which the callback returns true.
  • object.omit: Return a copy of an object without the given key, or array of keys.
  • object.pick: Returns a filtered copy of an object with only the specified keys, like pick from lo-dash / underscore.
  • object.reduce: Reduces an object to a value that is the accumulated result of running each property in the object through a callback.
  • right-align: Right-align the text in a string.
  • word-wrap: Wrap words to a specified length.

Author

Jon Schlinkert

License

Copyright (c) 2014-2015 Jon Schlinkert
Released under the MIT license

Keywords

FAQs

Package last updated on 19 Apr 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc