Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

JS_IsExternalString

This article needs a technical review. How you can help.

This article covers features introduced in SpiderMonkey 17

Determines whether or not the specified JSString is an external string (that is, a string created by calling JS_NewExternalString rather than JS_NewExternalStringWithClosure).

Syntax

bool
JS_IsExternalString(JSString *str);
Name Type Description
str JSString * The string to check.

Description

JS_IsExternalString returns true if the string is an external string; otherwise it's false.

See Also

Document Tags and Contributors

 Contributors to this page: arai, fscholz, kscarfone, tschneidereit, Sheppy
 Last updated by: arai,