Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
space-separated-tokens
/
Filename :
index.js
back
Copy
'use strict' exports.parse = parse exports.stringify = stringify var empty = '' var space = ' ' var whiteSpace = /[ \t\n\r\f]+/g function parse(value) { var input = String(value || empty).trim() return input === empty ? [] : input.split(whiteSpace) } function stringify(values) { return values.join(space).trim() }