Files
iot/src/utils.js
d-popov d8a37e4b44 source now in separate modules;
Implemented MQTT coms.
Using Tasmota for ESP8266;
IR working reliably
2020-05-02 11:45:35 +03:00

4 lines
154 B
JavaScript

String.prototype.replaceAll = function(search, replacement) {
var target = this;
return target.replace(new RegExp(search, 'g'), replacement);
};