balena-cli/lib/device/device.coffee

16 lines
392 B
CoffeeScript
Raw Normal View History

_ = require('lodash')
DEVICES = require('./device-data.json')
exports.getDisplayName = (device) ->
for key, value of DEVICES
if _.indexOf(value.names, device) isnt -1
return key
return 'Unknown'
2014-11-24 12:25:45 +00:00
exports.getDeviceSlug = (device) ->
displayName = exports.getDisplayName(device)
return DEVICES[displayName]?.slug or 'unknown'
2014-11-24 12:25:45 +00:00
exports.getSupportedDevices = ->
return _.keys(DEVICES)