Comparing version 0.3.4 to 0.3.5
{ | ||
"name": "words.js", | ||
"version": "0.3.4", | ||
"version": "0.3.5", | ||
"description": "A flexible, robust and powerful Javascript word-string manipulation library.", | ||
@@ -5,0 +5,0 @@ "main": "words.min.js", |
@@ -58,14 +58,15 @@ words.js | ||
___ | ||
You can use `npm install words.js` when using node.js. The dependent strings.js and included types.js will | ||
automatically be installed as well. | ||
<br/> | ||
words.js includes types.js and strings.js. In the browser you can access them via the following global variables: | ||
- Types | ||
- Strings | ||
- Words | ||
You can use `npm install words.js` when you're on node.js. | ||
In npm, words.js, types.js and strings.js can be accessed in the following way: | ||
```javascript | ||
var Words = require('words.js'); | ||
// to have the non-overloaded strings.js, but also the handy types.js | ||
// functions available as well use: | ||
var Types = require('words.js').Types; | ||
// to have the non-overloaded strings.js | ||
var Strings = require('words.js').Strings; | ||
// or | ||
var Types= Words.Types; | ||
var Strings= Words.Strings; | ||
``` | ||
@@ -72,0 +73,0 @@ ___ |
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
299076
446