-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
…oses mout#163
- Loading branch information
1 parent
68c2f43
commit ecb1f2a
Showing
4 changed files
with
27 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Run this script with Node to generate the pattern that is included in | ||
// src/string/removeNonWord.js. | ||
// | ||
// node _build/pattern-removeNonWord | ||
// | ||
|
||
var regenerate = require('regenerate'); | ||
|
||
var pattern = regenerate() | ||
.addRange('a', 'z') | ||
.addRange('A', 'Z') | ||
.addRange('0', '9') | ||
.addRange(0xC0, 0xFF) | ||
.add(' ', '-', '_') | ||
.remove(0xF7, 0xD7) | ||
.toString(); | ||
|
||
console.log('// Pattern for string/removeNonWord:'); | ||
console.log('/' + pattern + '/g'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters