UNPKG
@react-gnome/core
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
## Getting Started
@react-gnome/core
/
polyfills
/
esm
/
buffer.mjs
9 lines
(8 loc)
•
227 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
// src/polyfills/buffer.ts
import
{
Buffer
as
BufferPolyfill
}
from
"buffer"
;
import
{ registerPolyfills }
from
"./shared/polyfill-global.mjs"
;
registerPolyfills
(
"Buffer"
)(
() =>
{
return
{
Buffer
:
BufferPolyfill
}; });