Merge pull request #11603 from Snuffleupagus/eslint-no-buffer-constructor
Enable the `no-buffer-constructor` ESLint rule
This commit is contained in:
commit
f6c813710a
@ -127,6 +127,9 @@
|
||||
"args": "none",
|
||||
}],
|
||||
|
||||
// Node.js and CommonJS
|
||||
"no-buffer-constructor": "error",
|
||||
|
||||
// Stylistic Issues
|
||||
"lines-between-class-members": ["error", "always"],
|
||||
"max-len": ["error", {
|
||||
|
@ -145,7 +145,7 @@ if (typeof PDFJSDev === "undefined" || PDFJSDev.test("GENERIC")) {
|
||||
input = literals;
|
||||
} else {
|
||||
// eslint-disable-next-line no-undef
|
||||
input = new Buffer(literals);
|
||||
input = Buffer.from(literals);
|
||||
}
|
||||
const output = __non_webpack_require__("zlib").deflateSync(input, {
|
||||
level: 9,
|
||||
|
Loading…
x
Reference in New Issue
Block a user