summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/code-point-at/readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/code-point-at/readme.md')
-rw-r--r--tools/eslint/node_modules/code-point-at/readme.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/tools/eslint/node_modules/code-point-at/readme.md b/tools/eslint/node_modules/code-point-at/readme.md
new file mode 100644
index 0000000000..71e7d0931b
--- /dev/null
+++ b/tools/eslint/node_modules/code-point-at/readme.md
@@ -0,0 +1,34 @@
+# code-point-at [![Build Status](https://travis-ci.org/sindresorhus/code-point-at.svg?branch=master)](https://travis-ci.org/sindresorhus/code-point-at)
+
+> ES2015 [`String#codePointAt()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/codePointAt) ponyfill
+
+> Ponyfill: A polyfill that doesn't overwrite the native method
+
+
+## Install
+
+```
+$ npm install --save code-point-at
+```
+
+
+## Usage
+
+```js
+var codePointAt = require('code-point-at');
+
+codePointAt('🐴');
+//=> 128052
+
+codePointAt('abc', 2);
+//=> 99
+```
+
+## API
+
+### codePointAt(input, [position])
+
+
+## License
+
+MIT © [Sindre Sorhus](http://sindresorhus.com)