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

discord-api-types

Package Overview
Dependencies
Maintainers
3
Versions
1013
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

discord-api-types - npm Package Compare versions

Comparing version 0.37.113 to 0.37.114-next.ee53ef7.1734934708

2

package.json
{
"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

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