/usr/share/doc/node-reserved/README.md is in node-reserved 0.1.2+20140511-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | # reserved [![NPM version](https://badge.fury.io/js/reserved.png)](http://badge.fury.io/js/reserved)
> Reserved words that may not be used as variables, functions, methods, or object identifiers, since ECMAScript specifies special behavior for them.
Used in [variable](https://github.com/jonschlinkert/variable)
## Install
Install with [npm](npmjs.org):
```bash
npm i reserved --save-dev
```
## Usage
```js
var reserved = require('reserved');
console.log(reserved);
//=> 'abstract', 'arguments', 'boolean', 'break', 'byte', 'case'...
```
## Author
**Jon Schlinkert**
+ [github/jonschlinkert](https://github.com/jonschlinkert)
+ [twitter/jonschlinkert](http://twitter.com/jonschlinkert)
## License
Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license
***
_This file was generated by [verb-cli](https://github.com/assemble/verb-cli) on May 11, 2014._
|