function RANGE (type) {
  if (!(this instanceof RANGE)) return new RANGE(type)
  if (!type) throw new Error('RANGE must declare type')
  this.type = type
}