Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ember-angle-bracket-invocation-polyfill

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ember-angle-bracket-invocation-polyfill - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

6

lib/ast-transform.js

@@ -22,3 +22,7 @@ 'use strict';

return string.replace(/[A-Z]/g, function(char, index) {
return (index !== 0 ? '-' : '') + char.toLowerCase();
if (index === 0 || !ALPHA.test(string[index - 1])) {
return char.toLowerCase();
}
return `-${char.toLowerCase()}`;
});

@@ -25,0 +29,0 @@ }

2

package.json
{
"name": "ember-angle-bracket-invocation-polyfill",
"version": "1.1.3",
"version": "1.1.4",
"description": "The default blueprint for ember-cli addons.",

@@ -5,0 +5,0 @@ "keywords": [

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc