Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
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.

to-comparators.js 268B

12345678
  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