JSPM

mac-extension-icon

0.0.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 2
  • Score
    100M100P100Q31622F
  • License MIT

Get the Finder icon for a file extension

Package Exports

  • mac-extension-icon

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (mac-extension-icon) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

mac-extension-icon Build Status

Get the native macOS icon for a specific file extension as a PNG image buffer.

var getIconForExtension = require('mac-extension-icon').getIconForExtension
getIconForExtension('.mp3', function (error, pngBuffer) {
  require('fs').writeFileSync('mp3.png', pngBuffer)
})