safe-strings
Advanced tools
Comparing version 1.0.0 to 1.0.1
{ | ||
"name": "safe-strings", | ||
"version": "1.0.0", | ||
"version": "1.0.1", | ||
"description": "A collection of unicode-safe, pure, string functions inspired by other programming languages.", | ||
@@ -19,5 +19,5 @@ "main": "index.js", | ||
"devDependencies": { | ||
"jsdoc-to-markdown": "^5.0.0", | ||
"mocha": "^6.2.0" | ||
"jsdoc-to-markdown": "^5.0.3", | ||
"mocha": "^6.2.3" | ||
} | ||
} |
@@ -10,3 +10,3 @@ # safe-strings | ||
```shell | ||
$ npm i string-util | ||
$ npm i safe-strings | ||
``` | ||
@@ -19,3 +19,3 @@ | ||
```js | ||
const { center, capwords } = require('string-util'); | ||
const { center, capwords } = require('safe-strings'); | ||
@@ -29,3 +29,3 @@ center('my string', 20); | ||
```js | ||
const stringUtil = require('string-util'); | ||
const stringUtil = require('safe-strings'); | ||
@@ -32,0 +32,0 @@ stringUtil.center('my string', 20); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
24584