@cenk1cenk2/oclif-common 6.3.1 → 6.3.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/dist/index.js +2 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1224,16 +1224,10 @@ var _LockerService = class _LockerService {
|
|
|
1224
1224
|
return this.toUnlock.length > 0;
|
|
1225
1225
|
}
|
|
1226
1226
|
addLock(...data) {
|
|
1227
|
-
this.toLock
|
|
1228
|
-
...this.toLock,
|
|
1229
|
-
...data
|
|
1230
|
-
];
|
|
1227
|
+
this.toLock.push(...data);
|
|
1231
1228
|
}
|
|
1232
1229
|
addUnlock(...data) {
|
|
1233
|
-
this.toUnlock
|
|
1234
|
-
...this.toUnlock,
|
|
1235
|
-
...data
|
|
1236
|
-
];
|
|
1230
|
+
this.toUnlock.push(...data);
|
|
1237
1231
|
}
|
|
1238
1232
|
async applyLockAll(lock) {
|
|
1239
1233
|
if (this.hasLock()) {
|