obj2gltf/lib/getJsonBufferPadded.js

30 lines
772 B
JavaScript
Raw Permalink Normal View History

2017-07-19 17:56:24 -04:00
'use strict';
module.exports = getJsonBufferPadded;
/**
* Convert the JSON object to a padded buffer.
*
* Pad the JSON with extra whitespace to fit the next 4-byte boundary. This ensures proper alignment
* for the section that follows.
*
* @param {Object} [json] The JSON object.
* @returns {Buffer} The padded JSON buffer.
*
* @private
*/
function getJsonBufferPadded(json) {
2019-02-05 20:59:09 -05:00
let string = JSON.stringify(json);
2017-07-19 17:56:24 -04:00
2019-02-05 20:59:09 -05:00
const boundary = 4;
const byteLength = Buffer.byteLength(string);
const remainder = byteLength % boundary;
const padding = (remainder === 0) ? 0 : boundary - remainder;
let whitespace = '';
for (let i = 0; i < padding; ++i) {
2017-07-19 17:56:24 -04:00
whitespace += ' ';
}
string += whitespace;
return Buffer.from(string);
}