@amindunited/utils
Version:
A collection of javascript utility functions
23 lines (21 loc) • 647 B
JavaScript
/**
* @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 toCamelCase = require('@amindunited/to-camel-case');
const toKebabCase = require('@amindunited/to-kebab-case');
const toTitleCase = require('@amindunited/to-title-case');
const toSnakeCase = require('@amindunited/to-snake-case');
const revisionHash = require('@amindunited/revision-hash');
const isURIEncoded = require('@amindunited/is-uri-encoded');
module.exports = {
toCamelCase,
toKebabCase,
toTitleCase,
toSnakeCase,
revisionHash,
isURIEncoded
};