appolo-utils
Advanced tools
Comparing version 0.0.13 to 0.0.14
export class Enums { | ||
public static enumNames<T>(enm: T): string[] { | ||
public static enumNames(enm: any): string[] { | ||
let res = [], keys = Object.keys(enm), i = 0, len = keys.length; | ||
@@ -16,3 +16,3 @@ | ||
public static enumValues<T>(enm: T): T[] { | ||
public static enumValues<T>(enm: any): T[] { | ||
let res = [], keys = Object.keys(enm), i = 0, len = keys.length; | ||
@@ -19,0 +19,0 @@ |
@@ -17,3 +17,3 @@ { | ||
"main": "./index.js", | ||
"version": "0.0.13", | ||
"version": "0.0.14", | ||
"license": "MIT", | ||
@@ -20,0 +20,0 @@ "repository": { |
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
46597