Sign in
chromium
/
external
/
github.com
/
SeleniumHQ
/
selenium
/
refs/heads/api-docs-4.30.0-all
/
.
/
node_modules
/
graphql
/
jsutils
/
devAssert.mjs
blob: 5192b324c146046f845a82b98645a69d9a8c0c57 [
file
] [
log
] [
blame
] [
edit
]
export
function
devAssert
(
condition
,
message
)
{
const
booleanCondition
=
Boolean
(
condition
);
if
(!
booleanCondition
)
{
throw
new
Error
(
message
);
}
}