Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.80.46
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
stackframe /
Delete
Unzip
Name
Size
Permission
Date
Action
dist
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.jscsrc
800
B
-rw-r--r--
2016-02-08 06:45
.jshintrc
921
B
-rw-r--r--
2015-12-30 18:08
.npmignore
90
B
-rw-r--r--
2015-01-16 21:19
CHANGELOG.md
862
B
-rw-r--r--
2016-01-06 05:47
CONTRIBUTING.md
1.2
KB
-rw-r--r--
2015-08-08 21:12
LICENSE
1.05
KB
-rw-r--r--
2017-04-15 17:25
README.md
2.42
KB
-rw-r--r--
2017-04-30 01:24
bower.json
742
B
-rw-r--r--
2017-04-30 02:01
component.json
345
B
-rw-r--r--
2016-01-06 05:25
gulpfile.js
1.77
KB
-rw-r--r--
2016-04-02 02:42
karma.conf.ci.js
4.65
KB
-rw-r--r--
2017-05-07 22:10
karma.conf.js
549
B
-rw-r--r--
2016-01-06 05:47
package.json
2.4
KB
-rw-r--r--
2021-02-04 21:24
stackframe-tests.ts
1.42
KB
-rw-r--r--
2016-04-02 02:40
stackframe.d.ts
1.53
KB
-rw-r--r--
2016-04-02 02:35
stackframe.js
3.78
KB
-rw-r--r--
2017-08-12 17:14
Save
Rename
stackframe ========== ## JS Object representation of a stack frame [](https://travis-ci.org/stacktracejs/stackframe) [](https://coveralls.io/r/stacktracejs/stackframe?branch=master) [](https://opensource.org/licenses/MITx) Underlies functionality of other modules within [stacktrace.js](https://www.stacktracejs.com). Written to closely resemble StackFrame representations in [Gecko](http://mxr.mozilla.org/mozilla-central/source/xpcom/base/nsIException.idl#14) and [V8](https://github.com/v8/v8/wiki/Stack%20Trace%20API) ## Usage ```js // Create StackFrame and set properties var stackFrame = new StackFrame({ functionName: 'funName', args: ['args'], fileName: 'http://localhost:3000/file.js', lineNumber: 1, columnNumber: 3288, isEval: true, isNative: false, source: 'ORIGINAL_STACK_LINE' }); stackFrame.functionName // => "funName" stackFrame.setFunctionName('newName') stackFrame.getFunctionName() // => "newName" stackFrame.args // => ["args"] stackFrame.setArgs([]) stackFrame.getArgs() // => [] stackFrame.fileName // => 'http://localhost:3000/file.min.js' stackFrame.setFileName('http://localhost:3000/file.js') stackFrame.getFileName() // => 'http://localhost:3000/file.js' stackFrame.lineNumber // => 1 stackFrame.setLineNumber(325) stackFrame.getLineNumber() // => 325 stackFrame.columnNumber // => 3288 stackFrame.setColumnNumber(20) stackFrame.getColumnNumber() // => 20 stackFrame.source // => 'ORIGINAL_STACK_LINE' stackFrame.setSource('NEW_SOURCE') stackFrame.getSource() // => 'NEW_SOURCE' stackFrame.isEval // => true stackFrame.setIsEval(false) stackFrame.getIsEval() // => false stackFrame.isNative // => false stackFrame.setIsNative(true) stackFrame.getIsNative() // => true stackFrame.toString() // => 'funName(args)@http://localhost:3000/file.js:325:20' ``` ## Browser Support [](https://saucelabs.com/u/stacktracejs) ## Installation ``` npm install stackframe bower install stackframe https://raw.githubusercontent.com/stacktracejs/stackframe/master/dist/stackframe.min.js ```