Files
tubestation/toolkit/modules/tests/xpcshell/test_jsesc.js
2019-07-05 11:15:43 +02:00

15 lines
410 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
const { jsesc } = ChromeUtils.import(
"resource://gre/modules/third_party/jsesc/jsesc.js"
);
function run_test() {
Assert.equal(jsesc("teééést", { lowercaseHex: true }), "te\\xe9\\xe9\\xe9st");
Assert.equal(
jsesc("teééést", { lowercaseHex: false }),
"te\\xE9\\xE9\\xE9st"
);
}