UNPKG

jsdom

Version:

A JavaScript implementation of many web standards

9 lines (6 loc) 190 B
"use strict"; // https://infra.spec.whatwg.org/#parse-json-from-bytes exports.parseJSONFromBytes = bytes => { const jsonText = bytes.toString("utf-8"); return JSON.parse(jsonText); };