25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
xzx 2ec7739298 [Version] V.3.8 4 yıl önce
..
lib [Version] V.3.8 4 yıl önce
LICENSE [Version] V.3.8 4 yıl önce
README.md [Version] V.3.8 4 yıl önce
package.json [Version] V.3.8 4 yıl önce

README.md

Shellwords

Shellwords provides functions to manipulate strings according to the word parsing rules of the UNIX Bourne shell. It is based on the Ruby module of the same name.

Installation

Add “shellwords” to your package.json file and run npm install.

Example

var shellwords = require("shellwords");

shellwords.split("foo 'bar baz'");
// ["foo", "bar baz"]

shellwords.escape("What's up, yo?");
// 'What\\\'s\\ up,\\ yo\\?'