UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

13 lines (12 loc) 276 B
'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) }