SYMBOL INDEX (579 symbols across 21 files) FILE: src/js/config.js constant SIGNING_KEY_NAME (line 5) | const SIGNING_KEY_NAME = 'signing_key' constant POPUP_FOLDER_STATE (line 6) | const POPUP_FOLDER_STATE = 'popup_folder_state' constant CONTAINER_SELECTOR_STATE (line 7) | const CONTAINER_SELECTOR_STATE = 'container_selector_config' function setSigningKey (line 11) | async function setSigningKey(key) { function regenerateSigningKey (line 17) | async function regenerateSigningKey() { function getSigningKey (line 21) | async function getSigningKey() { function restoreState (line 37) | async function restoreState(component, initialState = {}) { function saveState (line 41) | async function saveState(component, state) { FILE: src/js/containers.js function randomColor (line 17) | function randomColor() { function getContainerByName (line 22) | async function getContainerByName(name) { function lookupContainer (line 34) | function lookupContainer({ id, name }) { function createContainer (line 46) | function createContainer({ name, color, icon }) { function prepareContainer (line 54) | async function prepareContainer({ id, name, color, icon }) { FILE: src/js/opener/opener.js function error (line 11) | function error(e) { function openTabInContainer (line 18) | async function openTabInContainer(params) { function requestConfirmation (line 22) | function requestConfirmation(params) { function main (line 40) | async function main() { FILE: src/js/opener/parser.js function parseOpenerParams (line 63) | function parseOpenerParams(rawHash) { FILE: src/js/opener/validator.js function sanitizeURLSearchParams (line 5) | function sanitizeURLSearchParams(qs, schema) { function isEmpty (line 37) | function isEmpty(v) { function url (line 43) | function url(p) { function required (line 61) | function required(p, name) { function integer (line 68) | function integer(p, name) { function boolean (line 80) | function boolean(p, name) { function fallback (line 101) | function fallback(val) { function oneOf (line 111) | function oneOf(vals) { function oneOfOrEmpty (line 121) | function oneOfOrEmpty(vals) { function atLeastOneRequired (line 132) | function atLeastOneRequired(requiredParams) { FILE: src/js/params.js class SignatureError (line 7) | class SignatureError extends Error { } class OpenerParameters (line 9) | class OpenerParameters { method constructor (line 10) | constructor({ method id (line 36) | get id() { return this._data.id } method name (line 37) | get name() { return this._data.name } method color (line 38) | get color() { return this._data.color } method icon (line 39) | get icon() { return this._data.icon } method url (line 42) | get url() { return this._data.url } method index (line 43) | get index() { return this._data.index } method pinned (line 44) | get pinned() { return this._data.pinned } method openInReaderMode (line 45) | get openInReaderMode() { return this._data.openInReaderMode } method toQueryString (line 47) | toQueryString() { method sign (line 61) | async sign(key) { method verify (line 72) | async verify(key, signature) { class SignedQueryString (line 81) | class SignedQueryString extends URLSearchParams { method signature (line 82) | set signature(signature) { method signature (line 86) | get signature() { FILE: src/js/popup/bookmark.js constant LINK_ELEMENT (line 7) | const LINK_ELEMENT = 'linkElement' constant LINK_ICON (line 8) | const LINK_ICON = 'linkIcon' constant LINK_TITLE (line 9) | const LINK_TITLE = 'linkTitle' constant BOOKMARK_BUTTON (line 11) | const BOOKMARK_BUTTON = 'bookmarkButton' function escape (line 13) | function escape(text) { function bookmarkUrl (line 19) | function bookmarkUrl(tab, qs) { function refreshBookmarks (line 40) | function refreshBookmarks(url, title) { function toggleBookmark (line 58) | function toggleBookmark(url, title) { function updateBookmarkLink (line 74) | function updateBookmarkLink(tab, qs, containerName) { FILE: src/js/popup/containers.js constant CONTAINER_ELEMENT_ID (line 8) | const CONTAINER_ELEMENT_ID = 'container' constant CONTAINER_OPTIONS_TOGGLE (line 9) | const CONTAINER_OPTIONS_TOGGLE = 'containerOptionsToggle' constant CONTAINER_OPTIONS (line 10) | const CONTAINER_OPTIONS = 'containerOptions' constant USE_HOSTNAME_FOR_CONTAINER_NAME (line 11) | const USE_HOSTNAME_FOR_CONTAINER_NAME = 'useHostnameForContainerName' constant USE_CONTAINER_ID (line 12) | const USE_CONTAINER_ID = 'useContainerId' constant USE_CONTAINER_NAME (line 13) | const USE_CONTAINER_NAME = 'useContainerName' constant SIGNING_KEY_TOGGLE (line 14) | const SIGNING_KEY_TOGGLE = 'toggleSigningKey' constant SIGNING_KEY_CONTAINER (line 15) | const SIGNING_KEY_CONTAINER = 'signingKeyContainer' constant SIGNING_KEY (line 16) | const SIGNING_KEY = 'signingKey' constant REGENERATE_SIGNING_KEY (line 17) | const REGENERATE_SIGNING_KEY = 'regenerateSigningKey' constant SIGNING_KEY_REGENERATION_CONFIRMATION (line 18) | const SIGNING_KEY_REGENERATION_CONFIRMATION = 'signingKeyRegenerationCon... constant SIGNING_KEY_REGENERATION_CONFIRMATION_CONFIRM (line 19) | const SIGNING_KEY_REGENERATION_CONFIRMATION_CONFIRM = 'signingKeyRegener... constant SIGNING_KEY_REGENERATION_CONFIRMATION_CANCEL (line 20) | const SIGNING_KEY_REGENERATION_CONFIRMATION_CANCEL = 'signingKeyRegenera... function updateContainerList (line 22) | function updateContainerList(containers, state) { function updateContainerOptions (line 39) | function updateContainerOptions(state) { function updateSigningKey (line 51) | async function updateSigningKey() { function updateContainerSelector (line 55) | function updateContainerSelector(containers, state) { function setupContainerSelector (line 60) | function setupContainerSelector(containers, s) { FILE: src/js/popup/dom.js function hide (line 5) | function hide(id) { function show (line 9) | function show(id) { function toggle (line 13) | function toggle(id) { function el (line 17) | function el(id) { FILE: src/js/popup/folders.js function updateFolderFoldingState (line 9) | function updateFolderFoldingState({ newState, update }) { // eslint-disa... function setupFolderFoldingListeners (line 21) | function setupFolderFoldingListeners(s) { function setupFolderFolding (line 34) | async function setupFolderFolding() { FILE: src/js/popup/popup.js function getHostname (line 29) | function getHostname(url) { function updateLinks (line 33) | async function updateLinks(containers, containerState) { function main (line 57) | async function main() { FILE: src/js/popup/signature.js constant SIGNATURE_INPUT_ID (line 7) | const SIGNATURE_INPUT_ID = 'signatureInput' function updateSignatureCommand (line 9) | function updateSignatureCommand(signature) { FILE: src/js/popup/state.js class State (line 5) | class State { method constructor (line 6) | constructor(initialState, callback) { method update (line 11) | update(update) { method state (line 21) | state() { FILE: src/js/popup/terminal.js constant TERMINAL_INPUT_ID (line 7) | const TERMINAL_INPUT_ID = 'terminalInput' function updateTerminalCommand (line 9) | function updateTerminalCommand(params, signature) { FILE: src/js/popup/url.js constant URL_INPUT_ID (line 7) | const URL_INPUT_ID = 'urlInput' function updateURL (line 9) | function updateURL(qs) { FILE: src/js/security/hex.js function hex2array (line 28) | function hex2array(hex) { function array2hex (line 48) | function array2hex(arr) { FILE: src/js/security/keys.js function exportKey (line 7) | async function exportKey(key) { function importKey (line 11) | async function importKey(rawHexKey) { function generateKey (line 20) | async function generateKey() { FILE: src/js/security/signature.js function verifySignature (line 8) | async function verifySignature(rawHexKey, signature, data) { function generateSignature (line 15) | async function generateSignature(rawHexKey, data) { FILE: src/js/tabs.js function newTab (line 5) | async function newTab(container, params) { function closeCurrentTab (line 30) | async function closeCurrentTab() { function getActiveTab (line 35) | async function getActiveTab() { FILE: src/tests/lib/chai/chai.js function r (line 1) | function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==... function Assertion (line 160) | function Assertion (obj, msg, ssfi, lockSsfi) { function an (line 661) | function an (type, msg) { function SameValueZero (line 824) | function SameValueZero(a, b) { function includeChainingBehavior (line 828) | function includeChainingBehavior () { function include (line 832) | function include (val, msg) { function checkArguments (line 1320) | function checkArguments () { function assertEqual (line 1378) | function assertEqual (val, msg) { function assertEql (line 1443) | function assertEql(obj, msg) { function assertAbove (line 1501) | function assertAbove (n, msg) { function assertLeast (line 1604) | function assertLeast (n, msg) { function assertBelow (line 1707) | function assertBelow (n, msg) { function assertMost (line 1810) | function assertMost (n, msg) { function assertInstanceOf (line 2010) | function assertInstanceOf (constructor, msg) { function assertProperty (line 2159) | function assertProperty (name, val, msg) { function assertOwnProperty (line 2248) | function assertOwnProperty (name, value, msg) { function assertOwnPropertyDescriptor (line 2375) | function assertOwnPropertyDescriptor (name, descriptor, msg) { function assertLengthChain (line 2463) | function assertLengthChain () { function assertLength (line 2467) | function assertLength (n, msg) { function assertMatch (line 2526) | function assertMatch(re, msg) { function assertKeys (line 2682) | function assertKeys (keys) { function assertThrows (line 2976) | function assertThrows (errorLike, errMsgMatcher, msg) { function respondTo (line 3171) | function respondTo (method, msg) { function satisfy (line 3251) | function satisfy (matcher, msg) { function closeTo (line 3305) | function closeTo(expected, delta, msg) { function isSubsetOf (line 3332) | function isSubsetOf(subset, superset, cmp, contains, ordered) { function oneOf (line 3495) | function oneOf (list, msg) { function assertChanges (line 3608) | function assertChanges (subject, prop, msg) { function assertIncreases (line 3725) | function assertIncreases (subject, prop, msg) { function assertDecreases (line 3844) | function assertDecreases (subject, prop, msg) { function assertDelta (line 3950) | function assertDelta(delta, msg) { function loadShould (line 7341) | function loadShould () { function addProperty (line 8217) | function addProperty(property) { function inspect (line 8432) | function inspect(obj, showHidden, depth, colors) { function formatValue (line 8454) | function formatValue(ctx, value, recurseTimes) { function formatPrimitive (line 8605) | function formatPrimitive(ctx, value) { function formatError (line 8634) | function formatError(value) { function formatArray (line 8638) | function formatArray(ctx, value, recurseTimes, visibleKeys, keys) { function formatTypedArray (line 8658) | function formatTypedArray(value) { function formatProperty (line 8678) | function formatProperty(ctx, value, recurseTimes, visibleKeys, key, arra... function reduceToSingleString (line 8740) | function reduceToSingleString(output, base, braces) { function isTypedArray (line 8757) | function isTypedArray(ar) { function isArray (line 8763) | function isArray(ar) { function isRegExp (line 8768) | function isRegExp(re) { function isDate (line 8772) | function isDate(d) { function isError (line 8776) | function isError(e) { function objectToString (line 8780) | function objectToString(o) { function isNaN (line 8803) | function isNaN(value) { function stringDistanceCapped (line 9262) | function stringDistanceCapped(strA, strB, cap) { function exclude (line 9391) | function exclude () { function AssertionError (line 9430) | function AssertionError (message, _props, ssf) { function compatibleInstance (line 9524) | function compatibleInstance(thrown, errorLike) { function compatibleConstructor (line 9544) | function compatibleConstructor(thrown, errorLike) { function compatibleMessage (line 9570) | function compatibleMessage(thrown, errMatcher) { function getFunctionName (line 9594) | function getFunctionName(constructorFn) { function getConstructorName (line 9620) | function getConstructorName(errorLike) { function getMessage (line 9648) | function getMessage(errorLike) { function FakeMap (line 9677) | function FakeMap() { function memoizeCompare (line 9704) | function memoizeCompare(leftHandOperand, rightHandOperand, memoizeMap) { function memoizeSet (line 9727) | function memoizeSet(leftHandOperand, rightHandOperand, memoizeMap, resul... function deepEqual (line 9761) | function deepEqual(leftHandOperand, rightHandOperand, options) { function simpleEqual (line 9782) | function simpleEqual(leftHandOperand, rightHandOperand) { function extensiveDeepEqual (line 9818) | function extensiveDeepEqual(leftHandOperand, rightHandOperand, options) { function extensiveDeepEqualByType (line 9864) | function extensiveDeepEqualByType(leftHandOperand, rightHandOperand, lef... function regexpEqual (line 9916) | function regexpEqual(leftHandOperand, rightHandOperand) { function entriesEqual (line 9929) | function entriesEqual(leftHandOperand, rightHandOperand, options) { function iterableEqual (line 9957) | function iterableEqual(leftHandOperand, rightHandOperand, options) { function generatorEqual (line 9983) | function generatorEqual(leftHandOperand, rightHandOperand, options) { function hasIteratorFunction (line 9993) | function hasIteratorFunction(target) { function getIteratorEntries (line 10007) | function getIteratorEntries(target) { function getGeneratorEntries (line 10024) | function getGeneratorEntries(generator) { function getEnumerableKeys (line 10040) | function getEnumerableKeys(target) { function keysEqual (line 10058) | function keysEqual(leftHandOperand, rightHandOperand, keys, options) { function objectEqual (line 10081) | function objectEqual(leftHandOperand, rightHandOperand, options) { function isPrimitive (line 10120) | function isPrimitive(value) { function getFuncName (line 10148) | function getFuncName(aFunc) { function hasProperty (line 10217) | function hasProperty(obj, name) { function parsePath (line 10245) | function parsePath(path) { function internalGetPathValue (line 10277) | function internalGetPathValue(obj, parsed, pathDepth) { function internalSetPathValue (line 10314) | function internalSetPathValue(obj, val, parsed) { function getPathInfo (line 10368) | function getPathInfo(obj, path) { function getPathValue (line 10412) | function getPathValue(obj, path) { function setPathValue (line 10450) | function setPathValue(obj, path, val) { function typeDetect (line 10508) | function typeDetect(obj) { FILE: src/tests/lib/mocha/mocha.js function r (line 1) | function r(e,n,t){function o(i,f){if(!n[i]){if(!e[i]){var c="function"==... function timeslice (line 79) | function timeslice() { function isPermitted (line 267) | function isPermitted() { function canNotify (line 303) | function canNotify(value) { function display (line 318) | function display(runner) { function notPermitted (line 363) | function notPermitted(err) { function Progress (line 380) | function Progress() { function Context (line 522) | function Context() {} function createNoFilesMatchPatternError (line 626) | function createNoFilesMatchPatternError(message, pattern) { function createInvalidReporterError (line 641) | function createInvalidReporterError(message, reporter) { function createInvalidInterfaceError (line 656) | function createInvalidInterfaceError(message, ui) { function createUnsupportedError (line 670) | function createUnsupportedError(message) { function createMissingArgumentError (line 685) | function createMissingArgumentError(message, argument, expected) { function createInvalidArgumentTypeError (line 698) | function createInvalidArgumentTypeError(message, argument, expected) { function createInvalidArgumentValueError (line 717) | function createInvalidArgumentValueError(message, argument, value, reaso... function createInvalidExceptionError (line 733) | function createInvalidExceptionError(message, value) { function Hook (line 772) | function Hook(title, fn) { function shouldBeTested (line 943) | function shouldBeTested(suite) { function visit (line 1140) | function visit(obj, file) { function Mocha (line 1488) | function Mocha(options) { function done (line 2323) | function done(failures) { function Pending (line 2359) | function Pending(message) { function stringifyDiffObjs (line 2530) | function stringifyDiffObjs(err) { function Base (line 2661) | function Base(runner, options) { function pad (line 2743) | function pad(str, len) { function inlineDiff (line 2756) | function inlineDiff(actual, expected) { function unifiedDiff (line 2793) | function unifiedDiff(actual, expected) { function errorDiff (line 2836) | function errorDiff(actual, expected) { function colorLines (line 2859) | function colorLines(name, str) { function sameType (line 2881) | function sameType(a, b) { function Doc (line 2923) | function Doc(runner, options) { function Dot (line 3016) | function Dot(runner, options) { function HTML (line 3126) | function HTML(runner, options) { function makeUrl (line 3322) | function makeUrl(s) { function error (line 3379) | function error(msg) { function fragment (line 3388) | function fragment(html) { function hideSuitesWithout (line 3412) | function hideSuitesWithout(classname) { function unhide (line 3425) | function unhide() { function text (line 3438) | function text(el, contents) { function on (line 3449) | function on(el, event, fn) { function JSONStream (line 3514) | function JSONStream(runner, options) { function writeEvent (line 3551) | function writeEvent(event) { function clean (line 3563) | function clean(test) { function JSONReporter (line 3609) | function JSONReporter(runner, options) { function clean (line 3657) | function clean(test) { function cleanCycles (line 3679) | function cleanCycles(obj) { function errorJSON (line 3703) | function errorJSON(err) { function Landing (line 3769) | function Landing(runner, options) { function List (line 3864) | function List(runner, options) { function Markdown (line 3948) | function Markdown(runner, options) { function Min (line 4059) | function Min(runner, options) { function NyanCat (line 4115) | function NyanCat(runner, options) { function draw (line 4185) | function draw(type, n) { function write (line 4353) | function write(string) { function Progress (line 4401) | function Progress(runner, options) { function Spec (line 4505) | function Spec(runner, options) { function TAP (line 4607) | function TAP(runner, options) { function title (line 4661) | function title(test) { function println (line 4672) | function println(format, varArgs) { function createProducer (line 4686) | function createProducer(tapVersion) { function TAPProducer (line 4712) | function TAPProducer() {} function TAP12Producer (line 4791) | function TAP12Producer() { function TAP13Producer (line 4824) | function TAP13Producer() { function XUnit (line 4914) | function XUnit(runner, options) { function tag (line 5066) | function tag(name, attrs, close, content) { function Runnable (line 5118) | function Runnable(title, fn) { function multiple (line 5367) | function multiple(err) { function done (line 5382) | function done(err) { function callFn (line 5457) | function callFn(fn) { function callFnAsync (line 5485) | function callFnAsync(fn) { function Runner (line 5698) | function Runner(suite, delay) { function next (line 5930) | function next(i) { function next (line 6016) | function next(suite) { function hookErr (line 6130) | function hookErr(_, errSuite, after) { function next (line 6156) | function next(err, errSuite) { function alwaysFalse (line 6283) | function alwaysFalse() { function next (line 6307) | function next(errSuite) { function done (line 6341) | function done(errSuite) { function uncaught (line 6462) | function uncaught(err) { function start (line 6466) | function start() { function filterLeaks (line 6538) | function filterLeaks(ok, globals) { function isError (line 6581) | function isError(err) { function thrown2Error (line 6593) | function thrown2Error(err) { function createStatsCollector (line 6650) | function createStatsCollector(runner) { function Suite (line 6743) | function Suite(title, parentContext, isRoot) { function cleanArrReferences (line 7220) | function cleanArrReferences(arr) { function Test (line 7358) | function Test(title, fn) { function highlight (line 7534) | function highlight(js) { function emptyRepresentation (line 7579) | function emptyRepresentation(value, typeHint) { function jsonStringify (line 7689) | function jsonStringify(object, spaces, depth) { function withStack (line 7791) | function withStack(value, fn) { function hasMatchingExtname (line 7862) | function hasMatchingExtname(pathname, exts) { function isHiddenOnUnix (line 7884) | function isHiddenOnUnix(pathname) { function emitWarning (line 7992) | function emitWarning(msg, type) { function isMochaInternal (line 8055) | function isMochaInternal(line) { function isNodeInternal (line 8063) | function isNodeInternal(line) { function getLens (line 8254) | function getLens (b64) { function byteLength (line 8274) | function byteLength (b64) { function _byteLength (line 8281) | function _byteLength (b64, validLen, placeHoldersLen) { function toByteArray (line 8285) | function toByteArray (b64) { function tripletToBase64 (line 8330) | function tripletToBase64 (num) { function encodeChunk (line 8337) | function encodeChunk (uint8, start, end) { function fromByteArray (line 8350) | function fromByteArray (uint8) { function BrowserStdout (line 8397) | function BrowserStdout(opts) { function typedArraySupport (line 8464) | function typedArraySupport () { function createBuffer (line 8491) | function createBuffer (length) { function Buffer (line 8511) | function Buffer (arg, encodingOrOffset, length) { function from (line 8537) | function from (value, encodingOrOffset, length) { function assertSize (line 8602) | function assertSize (size) { function alloc (line 8610) | function alloc (size, fill, encoding) { function allocUnsafe (line 8634) | function allocUnsafe (size) { function fromString (line 8652) | function fromString (string, encoding) { function fromArrayLike (line 8676) | function fromArrayLike (array) { function fromArrayBuffer (line 8685) | function fromArrayBuffer (array, byteOffset, length) { function fromObject (line 8708) | function fromObject (obj) { function checked (line 8733) | function checked (length) { function SlowBuffer (line 8743) | function SlowBuffer (length) { function byteLength (line 8834) | function byteLength (string, encoding) { function slowToString (line 8883) | function slowToString (encoding, start, end) { function swap (line 8961) | function swap (b, n, m) { function bidirectionalIndexOf (line 9101) | function bidirectionalIndexOf (buffer, val, byteOffset, encoding, dir) { function arrayIndexOf (line 9157) | function arrayIndexOf (arr, val, byteOffset, encoding, dir) { function hexWrite (line 9225) | function hexWrite (buf, string, offset, length) { function utf8Write (line 9250) | function utf8Write (buf, string, offset, length) { function asciiWrite (line 9254) | function asciiWrite (buf, string, offset, length) { function latin1Write (line 9258) | function latin1Write (buf, string, offset, length) { function base64Write (line 9262) | function base64Write (buf, string, offset, length) { function ucs2Write (line 9266) | function ucs2Write (buf, string, offset, length) { function base64Slice (line 9348) | function base64Slice (buf, start, end) { function utf8Slice (line 9356) | function utf8Slice (buf, start, end) { function decodeCodePointsArray (line 9434) | function decodeCodePointsArray (codePoints) { function asciiSlice (line 9452) | function asciiSlice (buf, start, end) { function latin1Slice (line 9462) | function latin1Slice (buf, start, end) { function hexSlice (line 9472) | function hexSlice (buf, start, end) { function utf16leSlice (line 9485) | function utf16leSlice (buf, start, end) { function checkOffset (line 9524) | function checkOffset (offset, ext, length) { function checkInt (line 9699) | function checkInt (buf, value, offset, ext, max, min) { function checkIEEE754 (line 9887) | function checkIEEE754 (buf, value, offset, ext, max, min) { function writeFloat (line 9892) | function writeFloat (buf, value, offset, littleEndian, noAssert) { function writeDouble (line 9910) | function writeDouble (buf, value, offset, littleEndian, noAssert) { function base64clean (line 10049) | function base64clean (str) { function toHex (line 10063) | function toHex (n) { function utf8ToBytes (line 10068) | function utf8ToBytes (string, units) { function asciiToBytes (line 10148) | function asciiToBytes (str) { function utf16leToBytes (line 10157) | function utf16leToBytes (str, units) { function base64ToBytes (line 10173) | function base64ToBytes (str) { function blitBuffer (line 10177) | function blitBuffer (src, dst, offset, length) { function isInstance (line 10188) | function isInstance (obj, type) { function numberIsNaN (line 10193) | function numberIsNaN (obj) { function isArray (line 10225) | function isArray(arg) { function isBoolean (line 10233) | function isBoolean(arg) { function isNull (line 10238) | function isNull(arg) { function isNullOrUndefined (line 10243) | function isNullOrUndefined(arg) { function isNumber (line 10248) | function isNumber(arg) { function isString (line 10253) | function isString(arg) { function isSymbol (line 10258) | function isSymbol(arg) { function isUndefined (line 10263) | function isUndefined(arg) { function isRegExp (line 10268) | function isRegExp(re) { function isObject (line 10273) | function isObject(arg) { function isDate (line 10278) | function isDate(d) { function isError (line 10283) | function isError(e) { function isFunction (line 10288) | function isFunction(arg) { function isPrimitive (line 10293) | function isPrimitive(arg) { function objectToString (line 10305) | function objectToString(o) { function _typeof (line 10314) | function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbo... function useColors (line 10341) | function useColors() { function formatArgs (line 10369) | function formatArgs(args) { function log (line 10406) | function log() { function save (line 10421) | function save(namespaces) { function load (line 10440) | function load() { function localstorage (line 10468) | function localstorage() { function setup (line 10501) | function setup(env) { function __webpack_require__ (line 10858) | function __webpack_require__(moduleId) { function _interopRequireDefault (line 10934) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob... function Diff (line 10983) | function Diff() {} function done (line 10998) | function done(value) { function execEditLength (line 11030) | function execEditLength() { function buildValues (line 11157) | function buildValues(diff, components, newString, oldString, useLongestT... function clonePath (line 11210) | function clonePath(path) { function _interopRequireDefault (line 11230) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob... function diffChars (line 11233) | function diffChars(oldStr, newStr, options) { function _interopRequireDefault (line 11256) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob... function diffWords (line 11304) | function diffWords(oldStr, newStr, options) { function diffWordsWithSpace (line 11309) | function diffWordsWithSpace(oldStr, newStr, options) { function generateOptions (line 11323) | function generateOptions(options, defaults) { function _interopRequireDefault (line 11356) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob... function diffLines (line 11385) | function diffLines(oldStr, newStr, callback) { function diffTrimmedLines (line 11388) | function diffTrimmedLines(oldStr, newStr, callback) { function _interopRequireDefault (line 11409) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob... function diffSentences (line 11416) | function diffSentences(oldStr, newStr, callback) { function _interopRequireDefault (line 11436) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob... function diffCss (line 11443) | function diffCss(oldStr, newStr, callback) { function _interopRequireDefault (line 11469) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob... function diffJson (line 11496) | function diffJson(oldObj, newObj, options) { function canonicalize (line 11502) | function canonicalize(obj, stack, replacementStack, replacer, key) { function _interopRequireDefault (line 11577) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob... function diffArrays (line 11587) | function diffArrays(oldArr, newArr, callback) { function _interopRequireDefault (line 11609) | function _interopRequireDefault(obj) { return obj && obj.__esModule ? ob... function applyPatch (line 11611) | function applyPatch(source, uniDiff) { function applyPatches (line 11747) | function applyPatches(uniDiff, options) { function parsePatch (line 11787) | function parsePatch(uniDiff) { function _toConsumableArray (line 12001) | function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i ... function calcLineCount (line 12003) | function calcLineCount(hunk) { function merge (line 12021) | function merge(mine, theirs, base) { function loadPatch (line 12097) | function loadPatch(param, base) { function fileNameChanged (line 12114) | function fileNameChanged(patch) { function selectField (line 12118) | function selectField(index, mine, theirs) { function hunkBefore (line 12127) | function hunkBefore(test, check) { function cloneHunk (line 12131) | function cloneHunk(hunk, offset) { function mergeLines (line 12139) | function mergeLines(hunk, mineOffset, mineLines, theirOffset, theirLines) { function mutualChange (line 12191) | function mutualChange(hunk, mine, their) { function removal (line 12218) | function removal(hunk, mine, their, swap) { function conflict (line 12230) | function conflict(hunk, mine, their) { function insertLeading (line 12239) | function insertLeading(hunk, insert, their) { function insertTrailing (line 12246) | function insertTrailing(hunk, insert) { function collectChange (line 12253) | function collectChange(state) { function collectContext (line 12274) | function collectContext(state, matchChanges) { function allRemoves (line 12331) | function allRemoves(changes) { function skipRemoveSuperset (line 12336) | function skipRemoveSuperset(state, removeChanges, delta) { function calcOldNewLineCount (line 12348) | function calcOldNewLineCount(lines) { function _toConsumableArray (line 12400) | function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i ... function structuredPatch (line 12402) | function structuredPatch(oldFileName, newFileName, oldStr, newStr, oldHe... function createTwoFilesPatch (line 12515) | function createTwoFilesPatch(oldFileName, newFileName, oldStr, newStr, o... function createPatch (line 12535) | function createPatch(fileName, oldStr, newStr, oldHeader, newHeader, opt... function arrayEqual (line 12550) | function arrayEqual(a, b) { function arrayStartsWith (line 12558) | function arrayStartsWith(array, start) { function convertChangesToDMP (line 12583) | function convertChangesToDMP(changes) { function convertChangesToXML (line 12612) | function convertChangesToXML(changes) { function escapeHTML (line 12633) | function escapeHTML(s) { function EventEmitter (line 12688) | function EventEmitter() { function $getMaxListeners (line 12741) | function $getMaxListeners(that) { function emitNone (line 12756) | function emitNone(handler, isFn, self) { function emitOne (line 12766) | function emitOne(handler, isFn, self, arg1) { function emitTwo (line 12776) | function emitTwo(handler, isFn, self, arg1, arg2) { function emitThree (line 12786) | function emitThree(handler, isFn, self, arg1, arg2, arg3) { function emitMany (line 12797) | function emitMany(handler, isFn, self, args) { function _addListener (line 12865) | function _addListener(target, type, listener, prepend) { function onceWrapper (line 12943) | function onceWrapper() { function _onceWrap (line 12966) | function _onceWrap(target, type, listener) { function _listeners (line 13093) | function _listeners(target, type, unwrap) { function listenerCount (line 13126) | function listenerCount(type) { function spliceOne (line 13147) | function spliceOne(list, index) { function arrayClone (line 13153) | function arrayClone(arr, n) { function unwrapListeners (line 13160) | function unwrapListeners(arr) { function objectCreatePolyfill (line 13168) | function objectCreatePolyfill(proto) { function objectKeysPolyfill (line 13173) | function objectKeysPolyfill(obj) { function functionBindPolyfill (line 13180) | function functionBindPolyfill(context) { function isBuffer (line 13764) | function isBuffer (obj) { function isSlowBuffer (line 13769) | function isSlowBuffer (obj) { function mkdirP (line 13787) | function mkdirP (p, opts, f, made) { function parse (line 13929) | function parse(str) { function fmtShort (line 13994) | function fmtShort(ms) { function fmtLong (line 14019) | function fmtLong(ms) { function plural (line 14040) | function plural(ms, msAbs, n, name) { function nextTick (line 14363) | function nextTick(fn, arg1, arg2, arg3) { function defaultSetTimout (line 14411) | function defaultSetTimout() { function defaultClearTimeout (line 14414) | function defaultClearTimeout () { function runTimeout (line 14437) | function runTimeout(fun) { function runClearTimeout (line 14462) | function runClearTimeout(marker) { function cleanUpNextTick (line 14494) | function cleanUpNextTick() { function drainQueue (line 14509) | function drainQueue() { function Item (line 14547) | function Item(fun, array) { function noop (line 14561) | function noop() {} function Duplex (line 14652) | function Duplex(options) { function onend (line 14679) | function onend() { function onEndNT (line 14689) | function onEndNT(self) { function PassThrough (line 14759) | function PassThrough(options) { function _uint8ArrayToBuffer (line 14826) | function _uint8ArrayToBuffer(chunk) { function _isUint8Array (line 14829) | function _isUint8Array(obj) { function prependListener (line 14858) | function prependListener(emitter, event, fn) { function ReadableState (line 14870) | function ReadableState(options, stream) { function Readable (line 14947) | function Readable(options) { function readableAddChunk (line 15022) | function readableAddChunk(stream, chunk, encoding, addToFront, skipChunk... function addChunk (line 15058) | function addChunk(stream, state, chunk, addToFront) { function chunkInvalid (line 15072) | function chunkInvalid(state, chunk) { function needMoreData (line 15087) | function needMoreData(state) { function computeNewHighWaterMark (line 15105) | function computeNewHighWaterMark(n) { function howMuchToRead (line 15124) | function howMuchToRead(n, state) { function onEofChunk (line 15243) | function onEofChunk(stream, state) { function emitReadable (line 15261) | function emitReadable(stream) { function emitReadable_ (line 15271) | function emitReadable_(stream) { function maybeReadMore (line 15283) | function maybeReadMore(stream, state) { function maybeReadMore_ (line 15290) | function maybeReadMore_(stream, state) { function onunpipe (line 15334) | function onunpipe(readable, unpipeInfo) { function onend (line 15344) | function onend() { function cleanup (line 15357) | function cleanup() { function ondata (line 15385) | function ondata(chunk) { function onerror (line 15405) | function onerror(er) { function onclose (line 15416) | function onclose() { function onfinish (line 15421) | function onfinish() { function unpipe (line 15428) | function unpipe() { function pipeOnDrain (line 15445) | function pipeOnDrain(src) { function nReadingNextTick (line 15532) | function nReadingNextTick(self) { function resume (line 15549) | function resume(stream, state) { function resume_ (line 15556) | function resume_(stream, state) { function flow (line 15579) | function flow(stream) { function fromList (line 15665) | function fromList(n, state) { function fromListPartial (line 15685) | function fromListPartial(n, list, hasStrings) { function copyFromBufferString (line 15705) | function copyFromBufferString(n, list) { function copyFromBuffer (line 15734) | function copyFromBuffer(n, list) { function endReadable (line 15761) | function endReadable(stream) { function endReadableNT (line 15774) | function endReadableNT(state, stream) { function indexOf (line 15783) | function indexOf(xs, x) { function afterTransform (line 15867) | function afterTransform(er, data) { function Transform (line 15892) | function Transform(options) { function prefinish (line 15924) | function prefinish() { function done (line 15991) | function done(stream, er, data) { function WriteReq (line 16042) | function WriteReq(chunk, encoding, cb) { function CorkedRequest (line 16051) | function CorkedRequest(state) { function _uint8ArrayToBuffer (line 16091) | function _uint8ArrayToBuffer(chunk) { function _isUint8Array (line 16094) | function _isUint8Array(obj) { function nop (line 16104) | function nop() {} function WritableState (line 16106) | function WritableState(options, stream) { function Writable (line 16256) | function Writable(options) { function writeAfterEnd (line 16293) | function writeAfterEnd(stream, cb) { function validChunk (line 16303) | function validChunk(stream, state, chunk, cb) { function decodeChunk (line 16370) | function decodeChunk(state, chunk, encoding) { function writeOrBuffer (line 16390) | function writeOrBuffer(stream, state, isBuf, chunk, encoding, cb) { function doWrite (line 16429) | function doWrite(stream, state, writev, len, chunk, encoding, cb) { function onwriteError (line 16438) | function onwriteError(stream, state, sync, er, cb) { function onwriteStateUpdate (line 16462) | function onwriteStateUpdate(state) { function onwrite (line 16469) | function onwrite(stream, er) { function afterWrite (line 16494) | function afterWrite(stream, state, finished, cb) { function onwriteDrain (line 16504) | function onwriteDrain(stream, state) { function clearBuffer (line 16512) | function clearBuffer(stream, state) { function needFinish (line 16603) | function needFinish(state) { function callFinal (line 16606) | function callFinal(stream, state) { function prefinish (line 16617) | function prefinish(stream, state) { function finishMaybe (line 16630) | function finishMaybe(stream, state) { function endWritable (line 16642) | function endWritable(stream, state, cb) { function onCorkedFinish (line 16652) | function onCorkedFinish(corkReq, state, err) { function _classCallCheck (line 16698) | function _classCallCheck(instance, Constructor) { if (!(instance instanc... function copyBuffer (line 16703) | function copyBuffer(src, target, offset) { function BufferList (line 16708) | function BufferList() { function destroy (line 16784) | function destroy(err, cb) { function undestroy (line 16825) | function undestroy() { function emitErrorNT (line 16842) | function emitErrorNT(self, err) { function copyProps (line 16877) | function copyProps (src, dst) { function SafeBuffer (line 16890) | function SafeBuffer (arg, encodingOrOffset, length) { function Stream (line 16977) | function Stream() { function ondata (line 16984) | function ondata(chunk) { function ondrain (line 16994) | function ondrain() { function onend (line 17010) | function onend() { function onclose (line 17018) | function onclose() { function onerror (line 17026) | function onerror(er) { function cleanup (line 17037) | function cleanup() { function _normalizeEncoding (line 17103) | function _normalizeEncoding(enc) { function normalizeEncoding (line 17133) | function normalizeEncoding(enc) { function StringDecoder (line 17143) | function StringDecoder(encoding) { function utf8CheckByte (line 17204) | function utf8CheckByte(byte) { function utf8CheckIncomplete (line 17212) | function utf8CheckIncomplete(self, buf, i) { function utf8CheckExtraBytes (line 17245) | function utf8CheckExtraBytes(self, buf, p) { function utf8FillLast (line 17265) | function utf8FillLast(buf) { function utf8Text (line 17280) | function utf8Text(buf, i) { function utf8End (line 17291) | function utf8End(buf) { function utf16Text (line 17301) | function utf16Text(buf, i) { function utf16End (line 17324) | function utf16End(buf) { function base64Text (line 17333) | function base64Text(buf, i) { function base64End (line 17347) | function base64End(buf) { function simpleWrite (line 17354) | function simpleWrite(buf) { function simpleEnd (line 17358) | function simpleEnd(buf) { function Timeout (line 17380) | function Timeout(id, clearFn) { function deprecate (line 17467) | function deprecate (fn, msg) { function config (line 17498) | function config (name) { function deprecated (line 17597) | function deprecated() { function inspect (line 17644) | function inspect(obj, opts) { function stylizeWithColor (line 17702) | function stylizeWithColor(str, styleType) { function stylizeNoColor (line 17714) | function stylizeNoColor(str, styleType) { function arrayToHash (line 17719) | function arrayToHash(array) { function formatValue (line 17730) | function formatValue(ctx, value, recurseTimes) { function formatPrimitive (line 17843) | function formatPrimitive(ctx, value) { function formatError (line 17862) | function formatError(value) { function formatArray (line 17867) | function formatArray(ctx, value, recurseTimes, visibleKeys, keys) { function formatProperty (line 17887) | function formatProperty(ctx, value, recurseTimes, visibleKeys, key, arra... function reduceToSingleString (line 17946) | function reduceToSingleString(output, base, braces) { function isArray (line 17969) | function isArray(ar) { function isBoolean (line 17974) | function isBoolean(arg) { function isNull (line 17979) | function isNull(arg) { function isNullOrUndefined (line 17984) | function isNullOrUndefined(arg) { function isNumber (line 17989) | function isNumber(arg) { function isString (line 17994) | function isString(arg) { function isSymbol (line 17999) | function isSymbol(arg) { function isUndefined (line 18004) | function isUndefined(arg) { function isRegExp (line 18009) | function isRegExp(re) { function isObject (line 18014) | function isObject(arg) { function isDate (line 18019) | function isDate(d) { function isError (line 18024) | function isError(e) { function isFunction (line 18030) | function isFunction(arg) { function isPrimitive (line 18035) | function isPrimitive(arg) { function objectToString (line 18047) | function objectToString(o) { function pad (line 18052) | function pad(n) { function timestamp (line 18061) | function timestamp() { function hasOwnProperty (line 18103) | function hasOwnProperty(obj, prop) {