🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

class-annotations

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

class-annotations - npm Package Compare versions

Comparing version

to
0.1.2

2

package.json
{
"name": "class-annotations",
"version": "0.1.1",
"version": "0.1.2",
"description": "A reader annotations from class write with ES6 syntax",

@@ -5,0 +5,0 @@ "main": "class-annotations.js",

@@ -13,2 +13,4 @@ # [class-annotations]( https://www.npmjs.com/package/class-annotations )

* @Route( { name: "foo" , path: "/foo" , exactPath: true , methods=['GET'] } )
* @Another = 35
* @Another2: "hello"
*/

@@ -52,2 +54,10 @@ class Foo {

methods: { valueBrut: "['GET']" , value: [ 'GET' ] }
} ,
Another: {
valueBrut: "35" ,
value: 35
} ,
Another2: {
valueBrut: "hello" ,
value: "hello"
}

@@ -54,0 +64,0 @@ } ,