@barchart/portfolio-api-common 1.2.80 → 1.2.81
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.
|
@@ -347,7 +347,7 @@ module.exports = (() => {
|
|
|
347
347
|
static getIsLocked(position) {
|
|
348
348
|
assert.argumentIsRequired(position, 'position');
|
|
349
349
|
|
|
350
|
-
return is.object(position.system) && is.boolean(position.system.locked) && position.system.locked
|
|
350
|
+
return is.object(position.system) && is.boolean(position.system.locked) && position.system.locked;
|
|
351
351
|
}
|
|
352
352
|
|
|
353
353
|
toString() {
|
package/package.json
CHANGED
package/test/SpecRunner.js
CHANGED
|
@@ -3559,7 +3559,7 @@ module.exports = (() => {
|
|
|
3559
3559
|
static getIsLocked(position) {
|
|
3560
3560
|
assert.argumentIsRequired(position, 'position');
|
|
3561
3561
|
|
|
3562
|
-
return is.object(position.system) && is.boolean(position.system.locked) && position.system.locked
|
|
3562
|
+
return is.object(position.system) && is.boolean(position.system.locked) && position.system.locked;
|
|
3563
3563
|
}
|
|
3564
3564
|
|
|
3565
3565
|
toString() {
|