mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
552 B
14 lines
552 B
define: DUK_USE_PARANOID_ERRORS
|
|
introduced: 1.4.0
|
|
default: false
|
|
tags:
|
|
- ecmascript
|
|
- sandbox
|
|
description: >
|
|
When enabled, error messages won't involve summarization of keys or values.
|
|
Summaries may be an issue in some security sensitive environments because
|
|
error messages will include e.g. property keys.
|
|
|
|
The default is to summarize offending base value and key for property access
|
|
errors such as "null.foo = 123;", invalid calls such as "undefined()", etc.
|
|
Base values and keys are summarized using duk_push_string_tval_readable().
|
|
|