UNPKG

libdom-http

Version:
20 lines (14 loc) 311 B
'use strict'; import { number, string } from "libcore"; function convert(data) { if (number(data)) { data = data.toString(10); } return ['Content-type: text/plain', string(data) ? data : '']; } export default convert;