@indra.ai/deva 1.2.37 → 1.2.39
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 +2 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Copyright (c)2025 Quinn Michaels; All Rights Reserved; Legal Signature Required.
|
|
2
|
-
// Distributed under the
|
|
2
|
+
// Distributed under the Restricted software license, see the accompanying file LICENSE.md
|
|
3
3
|
import {EventEmitter} from 'node:events';
|
|
4
4
|
import fs from 'fs';
|
|
5
5
|
import path from 'path';
|
|
@@ -197,7 +197,6 @@ class Deva {
|
|
|
197
197
|
for (const x in client.features) {
|
|
198
198
|
const methods = client.features[x].methods || false;
|
|
199
199
|
if (methods) for (const y in methods) {
|
|
200
|
-
|
|
201
200
|
const isFunc = typeof methods[y] === 'function';
|
|
202
201
|
if (isFunc) {
|
|
203
202
|
this.methods[y] = methods[y].bind(this);
|
|
@@ -687,7 +686,7 @@ class Deva {
|
|
|
687
686
|
return this._assignBind();
|
|
688
687
|
}).then(() => {
|
|
689
688
|
return this._assignListeners();
|
|
690
|
-
}).then(() => {
|
|
689
|
+
}).then(() => {
|
|
691
690
|
return this.Client(client);
|
|
692
691
|
}).then(() => {
|
|
693
692
|
return this.Security();
|