discord-api-types
Advanced tools
Comparing version 0.37.113 to 0.37.114-next.ee53ef7.1734934708
{ | ||
"name": "discord-api-types", | ||
"version": "0.37.113", | ||
"version": "0.37.114-next.ee53ef7.1734934708", | ||
"description": "Discord API typings that are kept up to date for use in bot library creation.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://discord-api-types.dev", |
@@ -31,4 +31,6 @@ export type Nullable<T> = { | ||
type Omit_<T, K> = Omit<T, Extract<keyof T, K>>; | ||
export declare const urlSafeCharacters: RegExp; | ||
export declare const urlSafeCharacters: { | ||
test(input: string): boolean; | ||
}; | ||
export {}; | ||
//# sourceMappingURL=internals.d.ts.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.urlSafeCharacters = void 0; | ||
exports.urlSafeCharacters = /^[\d%A-Za-z-]+$/g; | ||
const pattern = /^[\d%A-Za-z-]+$/g; | ||
exports.urlSafeCharacters = { | ||
test(input) { | ||
const result = pattern.test(input); | ||
pattern.lastIndex = 0; | ||
return result; | ||
}, | ||
}; | ||
//# sourceMappingURL=internals.js.map |
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
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
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
2876891
56727
1