Fixed code styling

This commit is contained in:
Jesse Vander Does 2019-08-20 10:32:32 -07:00
parent 876cbefe74
commit a1b1860da2
3 changed files with 2 additions and 3 deletions

View File

@ -19,7 +19,6 @@ const RuntimeError = Cesium.RuntimeError;
const WindingOrder = Cesium.WindingOrder;
const Matrix4 = Cesium.Matrix4;
module.exports = loadObj;
// Object name (o) -> node

View File

@ -180,7 +180,7 @@ obj2gltf.defaults = {
* @type String
* @default 'Y'
*/
outputUpAxis: 'Y',
outputUpAxis: 'Y'
};
/**

View File

@ -467,7 +467,7 @@ describe('loadObj', () => {
}
async function checkAxisConversion(inputUpAxis, outputUpAxis, position, normal) {
var sameAxis = (inputUpAxis === outputUpAxis);
const sameAxis = (inputUpAxis === outputUpAxis);
options.inputUpAxis = inputUpAxis;
options.outputUpAxis = outputUpAxis;
const data = await loadObj(objRotatedUrl, options);