1'use strict'
2
3// Buffer in node 4.x < 4.5.0 doesn't have working Buffer.from
4// or Buffer.alloc, and Buffer in node 10 deprecated the ctor.
5// .M, this is fine .\^/M..
6let B = Buffer
7/* istanbul ignore next */
8if (!B.alloc) {
9 B = require('safe-buffer').Buffer
10}
11module.exports = B
12