Skip to content

Tags: BlueRival/string.js

Tags

3.0.0

Toggle 3.0.0's commit message
3.0.0 / 2014-12-08

------------------
**BREAKING** Now `underscore()` behaves as one would expect.

```js
S('CarSpeed').underscore().s //'_car_speed'
```

now

```js
S('CarSpeed').underscore().s //'car_speed'
```

See [jprichardson#122](jprichardson#122) [jprichardson#98](jprichardson#98)

2.2.0

Toggle 2.2.0's commit message
2.2.0 / 2014-10-20

------------------
- `endsWith()`, `startsWith()` accept multiple arguments: [Azharul Islam / jprichardson#118](jprichardson#118)
- `template()`: allow for spaces for readability: [Azharul Islam / jprichardson#119](jprichardson#119)
- `template()`: if key does not exist, replace with empty string [Azharul Islam / jprichardson#117](jprichardson#117)

2.1.0

Toggle 2.1.0's commit message
2.1.0 / 2014-09-22

------------------
- added `strip()` [jprichardson#115](jprichardson#115)

2.0.1

Toggle 2.0.1's commit message
2.0.1 / 2014-09-08

------------------
- forgot to bump version in actual `string.js` and `string.js.min`

2.0.0

Toggle 2.0.0's commit message
2.0.0 / 2014-09-02

------------------
- bugfix `isAlpha()` for empty strings [jprichardson#107](jprichardson#107)
- added .npmignore. Closes jprichardson#71
- `slugify()` behavior changed, added method `latinise()`. [jprichardson#112](jprichardson#112)

1.9.1

Toggle 1.9.1's commit message
1.9.1 / 2014-08-05

-------------------
* bugfix `parseCSV()` [Sergio-Muriel / jprichardson#97](jprichardson#97)
* bugfix `wrapHTML()` [Sergio-Muriel / jprichardson#100](jprichardson#100)
* optimize `isAlpha()` and `isAlphaNumeric()` [Sergio-Muriel / jprichardson#101](jprichardson#101)

1.9.0

Toggle 1.9.0's commit message
1.9.0 / 2014-06-23

------------------
* added `wrapHTML()` method, (jprichardson#90)

1.8.1

Toggle 1.8.1's commit message
1.8.1 / 2014-04-23

------------------
* bugfix: `toBoolean()`/`toBool()` treat `1` as `true`. (arowla / jprichardson#78)

1.8.0

Toggle 1.8.0's commit message
1.8.0 / 2014-01-13

------------------
* Changed behavior of 'between()'. Closes jprichardson#62

1.7.0

Toggle 1.7.0's commit message
1.7.0 / 2013-11-19

------------------
* `padLeft`, `padRight`, and `pad` support numbers as input now (nfriedly / jprichardson#70)