astro-ghostcms/.pnpm-store/v3/files/12/86f5b3477a10452a1ad16a83b41...

13 lines
276 B
Plaintext

'use strict'
/* eslint-disable node/no-deprecated-api */
module.exports = function (size) {
if (typeof Buffer.allocUnsafe === 'function') {
try {
return Buffer.allocUnsafe(size)
} catch (e) {
return new Buffer(size)
}
}
return new Buffer(size)
}