https://github.com/apsdehal/string-constants
String definitions for easy use
https://github.com/apsdehal/string-constants
Last synced: 4 months ago
JSON representation
String definitions for easy use
- Host: GitHub
- URL: https://github.com/apsdehal/string-constants
- Owner: apsdehal
- License: mit
- Created: 2016-06-20T06:18:08.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-20T07:49:39.000Z (almost 10 years ago)
- Last Synced: 2025-01-31T07:36:27.888Z (over 1 year ago)
- Language: JavaScript
- Homepage:
- Size: 3.91 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# string-constants
[](https://www.npmjs.com/package/string-constants)
Various string definitions for easy use
## Install
> npm install string-constants
> bower install string-constants
## Usage
### CommonJS
```js
var stringConstants = require('string-constants');
/**
* stringConstants variable now contains following properties:
*
* whitespace: All characters considered whitespace
* lowercase: All characters considered lowercase letters
* uppercase: All characters considered uppercase letters
* asciiLowercase: All characters considered lowercase ascii
* asciiUppercase: All characters considered uppercase ascii
* asciiLetters: All characters considered ascii
* letters: All characters considered letters
* digits: All characters considered decimal digits
* hexdigits: All characters considered hexadecimal digits
* octdigits: All characters considered octal digits
* punctuation: All characters considered punctuation
* printable: All characters considered printable
*/
console.log(stringConstants.digits);
// 0123456789
```
### Browser
Include script from `bower_components/string-constants/string-constants.js`
This will expose stringConstants variable to current context
```
console.log(this.stringConstants.digits);
// 0123456789
```
### AMD
```js
define(['path-here'], function (stringConstants) {
});
```
## License
MIT © [Amanpreet Singh](https://apsdehal.in)