WebConsoleUtils.js (216B)
1 /* Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ */ 3 4 "use strict"; 5 6 const Utils = { 7 supportsString(s) { 8 return s; 9 }, 10 }; 11 12 module.exports = { 13 Utils, 14 };