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:
Diffstat (limited to 'node_modules/@npmcli/name-from-folder/README.md')
-rw-r--r--node_modules/@npmcli/name-from-folder/README.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/node_modules/@npmcli/name-from-folder/README.md b/node_modules/@npmcli/name-from-folder/README.md
deleted file mode 100644
index 0735ca28a..000000000
--- a/node_modules/@npmcli/name-from-folder/README.md
+++ /dev/null
@@ -1,14 +0,0 @@
-# @npmcli/name-from-folder
-
-Get the package name from a folder path, including the scope if the
-basename of the dirname starts with `@`.
-
-For a path like `/x/y/z/@scope/pkg` it'll return `@scope/pkg`. If the path
-name is something like `/x/y/z/pkg`, then it'll return `pkg`.
-
-## USAGE
-
-```js
-const nameFromFolder = require('@npmcli/name-from-folder')
-const name = nameFromFolder('/some/folder/path')
-```