Socket
Socket
Sign inDemoInstall

@types/base-64

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/base-64 - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

5

base-64/index.d.ts

@@ -1,6 +0,1 @@

// Type definitions for base-64 1.0
// Project: https://github.com/mathiasbynens/base64, http://mths.be/base64
// Definitions by: Dolan Miu <https://github.com/dolanmiu>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export as namespace base64;

@@ -7,0 +2,0 @@

11

base-64/package.json
{
"name": "@types/base-64",
"version": "1.0.0",
"version": "1.0.1",
"description": "TypeScript definitions for base-64",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/base-64",
"license": "MIT",

@@ -9,4 +10,4 @@ "contributors": [

"name": "Dolan Miu",
"url": "https://github.com/dolanmiu",
"githubUsername": "dolanmiu"
"githubUsername": "dolanmiu",
"url": "https://github.com/dolanmiu"
}

@@ -23,4 +24,4 @@ ],

"dependencies": {},
"typesPublisherContentHash": "6ee10740ebdbd19f46e8035c5642c30c475810d91d2ca86b1729734a0821c3f1",
"typeScriptVersion": "3.5"
"typesPublisherContentHash": "e8a1b11de21c87751d79951817d96af618edabb9a5b86e42cf9431a71a8b5582",
"typeScriptVersion": "4.5"
}

@@ -9,9 +9,34 @@ # Installation

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/base-64.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/base-64/index.d.ts)
````ts
export as namespace base64;
export const version: string;
/**
* This function takes a byte string (the input parameter) and encodes it according to base64.
* The input data must be in the form of a string containing only characters
* in the range from U+0000 to U+00FF, each representing a binary byte with values 0x00 to 0xFF.
* The base64.encode() function is designed to be fully compatible
* with btoa() as described in the HTML Standard.
* see: https://html.spec.whatwg.org/multipage/webappapis.html#dom-windowbase64-btoa
*/
export function encode(input: string): string;
/**
* This function takes a base64-encoded string (the input parameter) and decodes it.
* The return value is in the form of a string containing only characters in
* the range from U+0000 to U+00FF, each representing a binary byte with values 0x00 to 0xFF.
* The base64.decode() function is designed to be fully compatible
* with atob() as described in the HTML Standard.
* see: https://html.spec.whatwg.org/multipage/webappapis.html#dom-windowbase64-atob
*/
export function decode(input: string): string;
````
### Additional Details
* Last updated: Tue, 04 May 2021 19:31:28 GMT
* Last updated: Tue, 17 Oct 2023 22:10:13 GMT
* Dependencies: none
* Global values: `base64`
# Credits
These definitions were written by [Dolan Miu](https://github.com/dolanmiu).
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