lambdaorm-base
Advanced tools
Comparing version 1.4.10 to 1.4.11
{ | ||
"name": "lambdaorm-base", | ||
"version": "1.4.10", | ||
"version": "1.4.11", | ||
"description": "ORM", | ||
@@ -5,0 +5,0 @@ "author": "Flavio Lionel Rita <flaviolrita@proton.me>", |
@@ -23,4 +23,5 @@ "use strict"; | ||
entityName(name) { | ||
const plural = this.str.plural(name); | ||
return this.str.notation(plural, 'pascal'); | ||
let entityName = this.str.replace(name, '"', '').replace('\'', '').replace('`', ''); | ||
entityName = this.str.plural(entityName); | ||
return this.str.notation(entityName, 'pascal'); | ||
} | ||
@@ -27,0 +28,0 @@ propertyName(name) { |
Sorry, the diff of this file is not supported yet
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
363078
5273