@jjrawlins/cdk-iam-policy-builder-helper 0.0.104 → 0.0.106
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/.jsii
CHANGED
|
@@ -3483,7 +3483,7 @@
|
|
|
3483
3483
|
"stability": "stable"
|
|
3484
3484
|
},
|
|
3485
3485
|
"homepage": "https://github.com/JaysonRawlins/cdk-iam-policy-builder-helper.git",
|
|
3486
|
-
"jsiiVersion": "5.9.
|
|
3486
|
+
"jsiiVersion": "5.9.19 (build 870daae)",
|
|
3487
3487
|
"keywords": [
|
|
3488
3488
|
"aws",
|
|
3489
3489
|
"cdk",
|
|
@@ -3526,6 +3526,6 @@
|
|
|
3526
3526
|
}
|
|
3527
3527
|
},
|
|
3528
3528
|
"types": {},
|
|
3529
|
-
"version": "0.0.
|
|
3530
|
-
"fingerprint": "
|
|
3529
|
+
"version": "0.0.106",
|
|
3530
|
+
"fingerprint": "MphGQTozIh+hiw9k0EOIJREFX1gJpX4cCM+FwSp9YM4="
|
|
3531
3531
|
}
|
|
@@ -13,7 +13,7 @@ import (
|
|
|
13
13
|
constructs "github.com/aws/constructs-go/constructs/v10/jsii"
|
|
14
14
|
)
|
|
15
15
|
|
|
16
|
-
//go:embed jjrawlins-cdk-iam-policy-builder-helper-0.0.
|
|
16
|
+
//go:embed jjrawlins-cdk-iam-policy-builder-helper-0.0.105.tgz
|
|
17
17
|
var tarball []byte
|
|
18
18
|
|
|
19
19
|
// Initialize loads the necessary packages in the @jsii/kernel to support the enclosing module.
|
|
@@ -24,5 +24,5 @@ func Initialize() {
|
|
|
24
24
|
constructs.Initialize()
|
|
25
25
|
|
|
26
26
|
// Load this library into the kernel
|
|
27
|
-
_jsii_.Load("@jjrawlins/cdk-iam-policy-builder-helper", "0.0.
|
|
27
|
+
_jsii_.Load("@jjrawlins/cdk-iam-policy-builder-helper", "0.0.105", tarball)
|
|
28
28
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.105
|
|
@@ -95,3 +95,9 @@ leadingZeros: true, //when number with leading zeros like 08 should be parsed. 0
|
|
|
95
95
|
eNotation: true, //when number with eNotation or number parsed in eNotation should be considered
|
|
96
96
|
skipLike: /regex/ //when string should not be parsed when it matches the specified regular expression
|
|
97
97
|
```
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
# Try out our other work
|
|
101
|
+
|
|
102
|
+
WishIn - You need it if negative thoughts take over all the time <br>
|
|
103
|
+
<a href="https://play.google.com/store/apps/details?id=com.solothought.wishin"> <img src="https://solothought.com/products/assets/images/wishin/YouTubeThumbnail.png" width="500px"/> </a>
|
|
@@ -25,7 +25,7 @@ export default function toNumber(str, options = {}){
|
|
|
25
25
|
return parse_int(trimmedStr, 16);
|
|
26
26
|
// }else if (options.oct && octRegex.test(str)) {
|
|
27
27
|
// return Number.parseInt(val, 8);
|
|
28
|
-
}else if (trimmedStr.
|
|
28
|
+
}else if (trimmedStr.includes('e') || trimmedStr.includes('E')) { //eNotation
|
|
29
29
|
return resolveEnotation(str,trimmedStr,options);
|
|
30
30
|
// }else if (options.parseBin && binRegex.test(str)) {
|
|
31
31
|
// return Number.parseInt(val, 2);
|