@architect/data
Advanced tools
Comparing version 3.0.2 to 3.0.3
{ | ||
"name": "@architect/data", | ||
"version": "3.0.2", | ||
"version": "3.0.3", | ||
"description": "Dynamically generate a DynamoDB data access layer from an .arc file", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/arc-repos/arc-data", |
@@ -28,3 +28,3 @@ let aws = require('aws-sdk') | ||
// helper to split the arn and return just the physical table name | ||
let table = arn=> arn.split('table/')[1] | ||
let table = arn=> arn.split('table/')[1].replace('/*', '') | ||
// helper to return the tables as: {logicalID, physicalID} | ||
@@ -31,0 +31,0 @@ let map = tbl=> ({logicalID: tbl.split('-')[1], physicalID: tbl}) |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
20919