3.0.1 • Published 3 years ago

file-uti v3.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

file-uti

Get the UTI (Uniform Type Identifier) of a file on macOS

Install

$ npm install file-uti

Usage

import {fileUti} from 'file-uti';

console.log(await fileUti('index.js'));
//=> 'com.netscape.javascript-source'

API

fileUti(filePath)

Returns a Promise<string> with the UTI.

fileUtiSync(filePath)

Returns a string with the UTI.

Related