web 3d图形渲染器
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.

8 lines
268 B

  1. const Range = require('../classes/range')
  2. // Mostly just for testing and legacy API reasons
  3. const toComparators = (range, options) =>
  4. new Range(range, options).set
  5. .map(comp => comp.map(c => c.value).join(' ').trim().split(' '))
  6. module.exports = toComparators