UNPKG
beaverjs
Version:
alpha (0.3.0)
latest (0.3.1)
0.3.1
0.3.0
0.2.0
0.1.0
An abstraction around WebExtension messaging
beaverjs
/
dist
/
utilities.d.ts
4 lines
(3 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
export
declare
function
assert
(
condition
:
any
,
message
:
string
):
void
;
export
declare
function
tryParse
(
data
:
string
,
fallback
?:
any
):
any
;
export
declare
function
filterMap<T, M>(
array
:
Iterable
<T>,
fn
:
(
item
: T
) =>
M |
null
):
Iterable
<M>;