UNPKG

glize

Version:

Glize is a clean and robust pure JavaScript library.

16 lines (13 loc) 455 B
/** * @fileoverview Utilities methods. * * @see https://google.github.io/styleguide/javascriptguide.xml * @see https://developers.google.com/closure/compiler/docs/js-for-compiler * @module glize/utils */ import * as array from './array.js'; import * as date from './date.js'; import * as events from './events.js'; import * as number from './number.js'; import * as string from './string.js'; export { array, date, events, number, string };