UNPKG

infrastructure-components

Version:

Infrastructure-Components configure the infrastructure of your React-App as part of your React-Components.

12 lines (10 loc) 276 B
'use strict'; module.exports = function getString(data) { if (Buffer.isBuffer(data)) { return data.toString('utf8'); } else if (typeof data === 'string') { return data; } else { throw new Error(`response.write() of unexpected type: ${typeof data}`); } };