Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion common/plugin_transpiler/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ import * as esbuild from 'esbuild'
// eslint-disable-next-line no-console
console.log('Build succeeded')
}
})()
}())
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ const checkIsValidHttpUrl = (str) => {
/**
* Actions represent the type of change to a location value.
*/
var Action
;(function (Action) {
var Action;
(function (Action) {
/**
* A POP indicates a change to an arbitrary index in the history stack, such
* as a back or forward navigation. It does not describe the direction of the
Expand All @@ -50,7 +50,7 @@ var Action
*/

Action['Replace'] = 'REPLACE'
})(Action || (Action = {}))
}(Action || (Action = {})));
function invariant(value, message) {
if (value === false || value === null || typeof value === 'undefined') {
throw new Error(message)
Expand Down Expand Up @@ -98,13 +98,13 @@ function parsePath(path) {
return parsedPath
}

var ResultType
;(function (ResultType) {
var ResultType;
(function (ResultType) {
ResultType['data'] = 'data'
ResultType['deferred'] = 'deferred'
ResultType['redirect'] = 'redirect'
ResultType['error'] = 'error'
})(ResultType || (ResultType = {}))
}(ResultType || (ResultType = {})));
/**
* Matches the given routes to a location and returns the match data.
*
Expand Down