https://github.com/walkerrandolphsmith/laces
Collection of common string utilities in JavaScript
https://github.com/walkerrandolphsmith/laces
javascript string string-formatter string-manipulation string-matching
Last synced: 12 months ago
JSON representation
Collection of common string utilities in JavaScript
- Host: GitHub
- URL: https://github.com/walkerrandolphsmith/laces
- Owner: walkerrandolphsmith
- License: mit
- Created: 2017-11-22T03:54:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-10T21:59:27.000Z (almost 8 years ago)
- Last Synced: 2025-01-24T04:45:25.841Z (about 1 year ago)
- Topics: javascript, string, string-formatter, string-manipulation, string-matching
- Language: JavaScript
- Homepage: http://walkerrandolphsmith.com/laces
- Size: 1.84 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Laces
Laces is a modern JavaScript string utility library providing modularity and ease of use.
[![License: MIT][license-badge]][license]
[![npm][npm-badge]][npm]
[![dependencies Status][npm-deps-badge]][npm-deps]
[![devDependencies Status][npm-dev-deps-badge]][npm-dev-deps]
[![Build Status][ci-badge]][ci]
[![Code Coverage][code-cov-badge]][code-cov]
[![Code Style][code-style-badge]][code-style]
[![Stories in Ready][waffle-badge]][waffle]
### Installation
Using npm:
```sh
// Install full build
$ npm install --save @laces/laces
// Cherry-pick only what you need
$ npm install --save @laces/toSnakeCase
```
Use in Node.js:
```js
// Load the full build
const laces = require('@laces/laces')
// Cherry-pick methods for smaller bundles
const toSnakeCase = require('@laces/toSnakeCase')
```
To contribute please read the
[contributing guide](https://github.com/walkerrandolphsmith/laces/blob/master/CONTRIBUTING.md) and
[code of conduct](https://github.com/walkerrandolphsmith/laces/blob/master/CODE_OF_CONDUCT.md)
[ci]: https://travis-ci.org/Quillio/stringy
[ci-badge]: https://travis-ci.org/walkerrandolphsmith/laces.svg?branch=master
[waffle]: http://waffle.io/walkerrandolphsmith/laces
[waffle-badge]: https://img.shields.io/waffle/label/walkerrandolphsmith/laces.svg
[npm]: https://www.npmjs.org/package/@laces/laces
[npm-badge]: https://img.shields.io/npm/v/@laces/laces.svg
[npm-deps]: https://david-dm.org/walkerrandolphsmith/laces
[npm-deps-badge]: https://david-dm.org/walkerrandolphsmith/laces/status.svg
[npm-dev-deps]: https://david-dm.org/walkerrandolphsmith/laces?type=dev
[npm-dev-deps-badge]: https://david-dm.org/walkerrandolphsmith/laces/dev-status.svg
[code-cov]: https://coveralls.io/github/walkerrandolphsmith/laces?branch=master
[code-cov-badge]: https://coveralls.io/repos/github/walkerrandolphsmith/laces/badge.svg?branch=master
[code-style]: https://github.com/airbnb/javascript
[code-style-badge]: https://img.shields.io/badge/code%20style-airbnb-brightgreen.svg
[license]: https://opensource.org/licenses/MIT
[license-badge]: https://img.shields.io/badge/License-MIT-brightgreen.svg