UNPKG

miio

Version:

Control Mi Home devices, such as Mi Robot Vacuums, Mi Air Purifiers, Mi Smart Home Gateway (Aqara) and more

13 lines (10 loc) 238 B
'use strict'; module.exports = function(str) { try { return JSON.parse(str); } catch(ex) { // Case 1: Load for subdevices fail as they return empty values str = str.replace('[,]', '[null,null]'); return JSON.parse(str); } };