/**
* @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 };