Comparing version 2.8.8 to 2.8.9
@@ -319,3 +319,3 @@ "use strict"; | ||
var values = (0, xpath_1.select)(childXPath_1, nodeDoc).reduce(function (r, n) { | ||
r[(0, camelcase_1.default)(n.name)] = n.value; | ||
r[(0, camelcase_1.default)(n.name, { locale: 'en-us' })] = n.value; | ||
return r; | ||
@@ -322,0 +322,0 @@ }, {}); |
@@ -203,3 +203,3 @@ "use strict"; | ||
function tagging(prefix, content) { | ||
var camelContent = (0, camelcase_1.default)(content); | ||
var camelContent = (0, camelcase_1.default)(content, { locale: 'en-us' }); | ||
return prefix + camelContent.charAt(0).toUpperCase() + camelContent.slice(1); | ||
@@ -457,3 +457,3 @@ } | ||
// Embed with node-rsa module | ||
var decryptedKey = new node_rsa_1.default(utility_1.default.readPrivateKey(key, passphrase), 'private', { | ||
var decryptedKey = new node_rsa_1.default(utility_1.default.readPrivateKey(key, passphrase), undefined, { | ||
signingScheme: getSigningScheme(signingAlgorithm), | ||
@@ -460,0 +460,0 @@ }); |
{ | ||
"name": "samlify", | ||
"version": "2.8.8", | ||
"version": "2.8.9", | ||
"description": "High-level API for Single Sign On (SAML 2.0)", | ||
@@ -5,0 +5,0 @@ "main": "build/index.js", |
@@ -339,3 +339,3 @@ import { DOMParser } from '@xmldom/xmldom'; | ||
const values = select(childXPath, nodeDoc).reduce((r: any, n: Attr) => { | ||
r[camelCase(n.name)] = n.value; | ||
r[camelCase(n.name, {locale: 'en-us'})] = n.value; | ||
return r; | ||
@@ -342,0 +342,0 @@ }, {}); |
@@ -239,3 +239,3 @@ /** | ||
function tagging(prefix: string, content: string): string { | ||
const camelContent = camelCase(content); | ||
const camelContent = camelCase(content, {locale: 'en-us'}); | ||
return prefix + camelContent.charAt(0).toUpperCase() + camelContent.slice(1); | ||
@@ -549,3 +549,3 @@ } | ||
utility.readPrivateKey(key, passphrase), | ||
'private', | ||
undefined, | ||
{ | ||
@@ -552,0 +552,0 @@ signingScheme: getSigningScheme(signingAlgorithm), |
Sorry, the diff of this file is not supported yet
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
493342