@indra.ai/deva 1.6.1 → 1.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +20 -0
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1645,6 +1645,26 @@ class Deva {
|
|
|
1645
1645
|
return this._getFeature('error', this._error);
|
|
1646
1646
|
}
|
|
1647
1647
|
|
|
1648
|
+
/**************
|
|
1649
|
+
func: log
|
|
1650
|
+
params: none
|
|
1651
|
+
describe: basic log features available in a Deva.
|
|
1652
|
+
usage: this.log()
|
|
1653
|
+
***************/
|
|
1654
|
+
log() {
|
|
1655
|
+
return this._getFeature('log', this._error);
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
/**************
|
|
1659
|
+
func: report
|
|
1660
|
+
params: none
|
|
1661
|
+
describe: basic report features available in a Deva.
|
|
1662
|
+
usage: this.report()
|
|
1663
|
+
***************/
|
|
1664
|
+
report() {
|
|
1665
|
+
return this._getFeature('report', this._error);
|
|
1666
|
+
}
|
|
1667
|
+
|
|
1648
1668
|
|
|
1649
1669
|
/**************
|
|
1650
1670
|
func: vector
|
package/package.json
CHANGED