npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

data-uri-type

1.0.0

@hemanth

npmHomeRepoSnykSocket
Downloads:3
$ npm install data-uri-type
DailyWeeklyMonthlyYearly

data-uri-type Build Status

Get the mediatype of a data-uri.

Install

$ npm install --save data-uri-type

Usage

const dataUriType = require('data-uri-type');

dataUriType('data:image/png;base64,iVBORw0KGgo')
  .then(console.log)  // 'image/png'
  .catch(console.error);

API

dataUriType(input)

input

Type: string

A data-URI

License

MIT © Hemanth.HM