UNPKG

@types/original

Version:
49 lines (40 loc) 1.41 kB
# Installation > `npm install --save @types/original` # Summary This package contains type definitions for original (https://github.com/unshiftio/original). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/original. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/original/index.d.ts) ````ts // Type definitions for original 1.0 // Project: https://github.com/unshiftio/original // Definitions by: Wayne Carson <https://github.com/wcarson> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.2 /** * Transform an URL to a valid origin value. * * @param url URL to transform to it's origin. * @returns The origin. * @api public */ declare function origin(url: string | object | { protocol: string; host: string }): string; declare namespace origin { /** * Check if the origins are the same. * * @param a URL or origin of a. * @param b URL or origin of b. * @returns true if origins are the same, false otherwise * @api public */ function same(a: string, b: string): boolean; } export = origin; ```` ### Additional Details * Last updated: Sun, 03 Sep 2023 22:34:04 GMT * Dependencies: none * Global values: none # Credits These definitions were written by [Wayne Carson](https://github.com/wcarson).