Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorForrest L Norvell <forrest@npmjs.com>2015-10-15 08:17:03 +0300
committerRebecca Turner <me@re-becca.org>2015-10-16 01:25:33 +0300
commit25a234b4595ee3f1a2c09e2a39e3c238aa642557 (patch)
treedef772e3c15c7bd3d0b05eeeb6069898617cbf23 /node_modules/wcwidth/Readme.md
parent4cd74b0cdc639081fcf292eb9a03dbd93451c7c0 (diff)
src: install npm@3 with npm@2
Restore the ability to do one-shot upgrades from the versions of npm bundled with Node 0.8 to npm@3, which simplifies using Travis with old Node and new npm, for compatibility testing purposes. Older versions of npm repack packages on install, which works poorly with the way npm@3 handles bundledDependencies with flat trees. Fixes: #9668 PR-URL: https://github.com/npm/npm/pull/9981
Diffstat (limited to 'node_modules/wcwidth/Readme.md')
-rw-r--r--node_modules/wcwidth/Readme.md33
1 files changed, 0 insertions, 33 deletions
diff --git a/node_modules/wcwidth/Readme.md b/node_modules/wcwidth/Readme.md
deleted file mode 100644
index 0649a3198..000000000
--- a/node_modules/wcwidth/Readme.md
+++ /dev/null
@@ -1,33 +0,0 @@
-# wcwidth
-
-Determine columns needed for a fixed-size wide-character string
-
-----
-
-wcwidth is a simple JavaScript port of [wcwidth](http://man7.org/linux/man-pages/man3/wcswidth.3.html) implemented in C by Markus Kuhn.
-
-JavaScript port [originally](https://github.com/mycoboco/wcwidth.js) written by Woong Jun <woong.jun@gmail.com> (http://code.woong.org/)
-
-## Example
-
-```js
-'한'.length // => 1
-wcwidth('한'); // => 2
-
-'한글'.length // => 2
-wcwidth('한글'); // => 4
-```
-
-`wcwidth()` and its string version, `wcswidth()` are defined by IEEE Std
-1002.1-2001, a.k.a. POSIX.1-2001, and return the number of columns used
-to represent the given wide character and string.
-
-Markus's implementation assumes the wide character given to those
-functions to be encoded in ISO 10646, which is almost true for
-JavaScript's characters.
-
-[Further explaination here](docs)
-
-## License
-
-MIT