Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
canvas
/
node_modules
/
graphql
/
jsutils
/
Filename :
printPathArray.js
back
Copy
'use strict'; Object.defineProperty(exports, '__esModule', { value: true, }); exports.printPathArray = printPathArray; /** * Build a string describing the path. */ function printPathArray(path) { return path .map((key) => typeof key === 'number' ? '[' + key.toString() + ']' : '.' + key, ) .join(''); }