2.1.0 • Published 5 years ago

@tubepress/es-utils v2.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

TubePress ECMAScript Utilities

A collection of application-agnostic ES6 modules with the following goals:

  1. Modules should provide stable interfaces to accomplish common tasks
  2. Module implementations should be lightweight, high-quality, and may be 3rd-party
  3. Modules must support ES5 environments

List of modules

Example Usage

import endsWith from '@tubepress/es-utils/es/string/ends-with';

if (endsWith('foo-bar', 'bar')) {
  ...
}