You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
522 B
22 lines
522 B
'use strict'
|
|
|
|
var Buffer = require('buffer').Buffer
|
|
// Returns either a Uint8Array or Buffer (doesn't matter to
|
|
// IndexedDB, because Buffer is a subclass of Uint8Array)
|
|
var str2bin = (function () {
|
|
if (global.TextEncoder) {
|
|
var encoder = new TextEncoder('utf-8')
|
|
return encoder.encode.bind(encoder)
|
|
} else {
|
|
return Buffer.from
|
|
}
|
|
})()
|
|
|
|
module.exports = function (data, asBuffer) {
|
|
if (asBuffer) {
|
|
return Buffer.isBuffer(data) ? data : str2bin(String(data))
|
|
} else {
|
|
return String(data)
|
|
}
|
|
}
|