fune/toolkit/modules/tests/xpcshell/test_jsesc.js
Victor Porof b503616295 Bug 1561435 - Format toolkit/modules/, a=automatic-formatting
# ignore-this-changeset

Differential Revision: https://phabricator.services.mozilla.com/D36056

--HG--
extra : source : 2616392f26053ee376b9126fbca696de5d4bb15b
2019-07-05 11:15:43 +02:00

14 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"
);
}