Skip to content

Commit 7394eae

Browse files
committed
bump deps & move API back to README
1 parent 9c559d0 commit 7394eae

6 files changed

+767
-610
lines changed

.all-contributorsrc

+4-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,10 @@
1616
"profile": "https://robertwpearce.com",
1717
"contributions": [
1818
"code",
19-
"ideas"
19+
"ideas",
20+
"test",
21+
"example",
22+
"doc"
2023
]
2124
}
2225
],

API.md

-71
This file was deleted.

README.md

+86-3
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,103 @@
33
[![npm version](https://img.shields.io/npm/v/@rpearce/flexible-string-replace.svg)](https://www.npmjs.com/package/@rpearce/flexible-string-replace) [![npm downloads](https://img.shields.io/npm/dm/@rpearce/flexible-string-replace.svg)](https://www.npmjs.com/package/@rpearce/flexible-string-replace) [![Build Status](https://travis-ci.org/rpearce/flexible-string-replace.svg?branch=master)](https://travis-ci.org/rpearce/flexible-string-replace) [![Coverage Status](https://coveralls.io/repos/github/rpearce/flexible-string-replace/badge.svg?branch=master)](https://coveralls.io/github/rpearce/flexible-string-replace?branch=master) [![Maintainability](https://api.codeclimate.com/v1/badges/ca092c1e9dfe10b455d7/maintainability)](https://codeclimate.com/github/rpearce/flexible-string-replace/maintainability)
44

55
## Links
6-
* [`API Documentation`](./API.md)
6+
* [`Installation`](#installation)
7+
* [`Usage`](#usage)
8+
* [`All Contributors`](#contributors)
79
* [`Authors`](./AUTHORS)
810
* [`Changelog`](./CHANGELOG.md)
911
* [`Contributing`](./CONTRIBUTING.md)
1012
* [`Code of Conduct`](./CODE_OF_CONDUCT.md)
1113

14+
## Installation
15+
```
16+
$ npm i @rpearce/flexible-string-replace
17+
```
18+
or
19+
```
20+
$ yarn add @rpearce/flexible-string-replace
21+
```
22+
23+
## Usage
24+
`flexible-string-replace` mirrors the functionality of
25+
[`String.prototype.replace`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace)
26+
with the following exceptions:
27+
* you can transform your match however you see fit
28+
* the return value is `[ * ]` – an Array of whatever type your `Replacement` is
29+
or returns. For example, if you pass it a function, then you'll get back a
30+
list of strings as well as your match transformations, whereas if you pass a
31+
string, you'll get back simply a list of strings with your replacement applied
32+
* the argument order is `(Pattern, Replacement, String)` so that if you'd like
33+
to [`curry`](https://ramdajs.com/docs/#curry) the function and partially apply
34+
the first two arguments, you can then reuse those over and over again with
35+
different strings
36+
37+
Note: while these examples use some JSX, your matching function can return
38+
whatever you like.
39+
40+
```js
41+
import flexibleStringReplace from '@rpearce/flexible-string-replace'
42+
43+
const str = 'The rain in Spain falls mainly on the plain. Spain is nice.'
44+
const searchText = 'spain'
45+
const replacement = (match, offset) => <mark key={offset}>{match}</mark>
46+
47+
48+
// usage with RegExp pattern
49+
const pattern = new RegExp(searchText, 'igm')
50+
flexibleStringReplace(pattern, replacement, str)
51+
// [
52+
// 'The rain in ',
53+
// <mark>Spain</mark>,
54+
// ' falls mainly on the plain. ',
55+
// <mark>Spain</mark>,
56+
// ' is nice.'
57+
// ]
58+
59+
60+
// usage with RegExp pattern and string Replacement
61+
const pattern = 'Spain'
62+
flexibleStringReplace(pattern, 'foobar', str)
63+
// [
64+
// 'The rain in ',
65+
// 'foobar',
66+
// ' falls mainly on the plain. ',
67+
// 'foobar',
68+
// ' is nice.'
69+
// ]
70+
71+
72+
// usage with String pattern (no match)
73+
const pattern = 'spain'
74+
flexibleStringReplace(pattern, replacement, str)
75+
// ["The rain in Spain falls mainly on the plain. Spain is nice."]
76+
77+
78+
// usage with String pattern (match)
79+
const pattern = 'Spain'
80+
flexibleStringReplace(pattern, replacement, str)
81+
// [
82+
// 'The rain in ',
83+
// <mark>Spain</mark>,
84+
// ' falls mainly on the plain. Spain is nice.',
85+
// ]
86+
```
87+
1288
## Contributors
1389

1490
Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
1591

1692
<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->
17-
<!-- prettier-ignore -->
18-
<table><tr><td align="center"><a href="https://robertwpearce.com"><img src="https://avatars2.githubusercontent.com/u/592876?v=4" width="100px;" alt="Robert Pearce"/><br /><sub><b>Robert Pearce</b></sub></a><br /><a href="https://github.com/rpearce/flexible-string-replace/commits?author=rpearce" title="Code">💻</a> <a href="#ideas-rpearce" title="Ideas, Planning, & Feedback">🤔</a></td></tr></table>
93+
<!-- prettier-ignore-start -->
94+
<!-- markdownlint-disable -->
95+
<table>
96+
<tr>
97+
<td align="center"><a href="https://robertwpearce.com"><img src="https://avatars2.githubusercontent.com/u/592876?v=4" width="100px;" alt=""/><br /><sub><b>Robert Pearce</b></sub></a><br /><a href="https://github.com/rpearce/flexible-string-replace/commits?author=rpearce" title="Code">💻</a> <a href="#ideas-rpearce" title="Ideas, Planning, & Feedback">🤔</a> <a href="https://github.com/rpearce/flexible-string-replace/commits?author=rpearce" title="Tests">⚠️</a> <a href="#example-rpearce" title="Examples">💡</a> <a href="https://github.com/rpearce/flexible-string-replace/commits?author=rpearce" title="Documentation">📖</a></td>
98+
</tr>
99+
</table>
19100

101+
<!-- markdownlint-enable -->
102+
<!-- prettier-ignore-end -->
20103
<!-- ALL-CONTRIBUTORS-LIST:END -->
21104

22105
This project follows the [all-contributors](https://github.com/all-contributors/all-contributors) specification. Contributions of any kind welcome!

husky.config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module.exports = {
22
hooks: {
3-
'pre-commit': 'lint-staged'
3+
'pre-push': 'lint-staged'
44
}
55
}

package.json

+13-13
Original file line numberDiff line numberDiff line change
@@ -47,19 +47,19 @@
4747
"test": "nyc ava --verbose"
4848
},
4949
"devDependencies": {
50-
"@babel/preset-react": "^7.0.0",
51-
"all-contributors-cli": "^6.9.0",
52-
"ava": "^2.3.0",
53-
"coveralls": "^3.0.6",
54-
"eslint": "^6.3.0",
55-
"eslint-config-prettier": "^6.3.0",
56-
"eslint-plugin-prettier": "^3.1.0",
57-
"eslint-plugin-react": "^7.14.3",
58-
"husky": "^3.0.5",
59-
"lint-staged": "^9.2.5",
50+
"@babel/preset-react": "^7.7.4",
51+
"all-contributors-cli": "^6.11.2",
52+
"ava": "^2.4.0",
53+
"coveralls": "^3.0.9",
54+
"eslint": "^6.8.0",
55+
"eslint-config-prettier": "^6.9.0",
56+
"eslint-plugin-prettier": "^3.1.2",
57+
"eslint-plugin-react": "^7.17.0",
58+
"husky": "^3.1.0",
59+
"lint-staged": "^9.5.0",
6060
"npm-run-all": "^4.1.5",
61-
"nyc": "^14.1.1",
62-
"prettier": "^1.18.2",
63-
"react": "^16.9.0"
61+
"nyc": "^15.0.0",
62+
"prettier": "^1.19.1",
63+
"react": "^16.12.0"
6464
}
6565
}

0 commit comments

Comments
 (0)