UNPKG
whatwg-streams-impl
Version:
latest (1.0.0)
1.0.0
WHATWG Streams Implementation for Node.JS
github.com/mpotra/whatwg-streams/
mpotra/whatwg-streams
whatwg-streams-impl
/
lib
/
assert.js
11 lines
(8 loc)
•
176 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
let
assert
;
try
{
assert
= require(
'better-assert'
); }
catch
(e) {
const
__assert
=
require(
'assert'
);
assert
= __assert.strict || __assert; }
module
.
exports
=
assert
;