UNPKG

@amindunited/utils

Version:

A collection of javascript utility functions

19 lines (17 loc) 410 B
/** * @license * Copyright Robin Buckley. All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file */ const array = require('./src/array'); const string = require('./src/string'); const process = require('./src/process'); const fileSystem = require('./src/file-system'); module.exports = { array, string, process, fileSystem }