UNPKG

588 BMarkdownView Raw
1# bumble-strings
2
3Some simple javascript string helpers for testing weak equality and more.
4
5[<img alt="Screenshot from doc/examples/model/model.html" src="https://travis-ci.org/littlebee/bumble-strings.svg?branch=master"
6/>](https://travis-ci.org/zulily/react-datum)
7
8(Api Docs and Examples)[http://littlebee.github.io/bumble-strings/docs/api/]
9
10
11### Installation
12```
13 npm install bumble-strings
14```
15
16### Usage
17Like any other common js library...
18```javascript
19Bstr = require('bumble-strings')
20resule = Bstr.weaklyHas("My dog has flees", "my dog")
21console.log(result) # true
22```
23
24