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

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/trim/index.js')
-rw-r--r--assets/node_modules/trim/index.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/assets/node_modules/trim/index.js b/assets/node_modules/trim/index.js
deleted file mode 100644
index 640c24c..0000000
--- a/assets/node_modules/trim/index.js
+++ /dev/null
@@ -1,14 +0,0 @@
-
-exports = module.exports = trim;
-
-function trim(str){
- return str.replace(/^\s*|\s*$/g, '');
-}
-
-exports.left = function(str){
- return str.replace(/^\s*/, '');
-};
-
-exports.right = function(str){
- return str.replace(/\s*$/, '');
-};