UNPKG

shp-to-gltf

Version:

a javascript lib to convert shp to gltf

16 lines (14 loc) 274 B
export default class Deffer{ constructor(){ this.promise = new Promise((r , j)=>{ this.r = r this.j = j }) } resolve(){ this.r(...arguments) } reject(){ this.j(...arguments) } }