mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-06-05 23:20:50 +00:00
10 lines
132 B
TypeScript
10 lines
132 B
TypeScript
import { Buffer } from 'buffer';
|
|
|
|
declare const self: any;
|
|
|
|
if (self && !self.Buffer) {
|
|
Object.assign(self, {
|
|
Buffer,
|
|
});
|
|
}
|