2 Commits

Author SHA1 Message Date
b2f7ee70c6 2.0.2 2024-05-28 12:42:26 +02:00
e453ba9a79 fix(core): update 2024-05-28 12:42:25 +02:00
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartmime",
"version": "2.0.1",
"version": "2.0.2",
"private": false,
"description": "A module for detecting MIME types with support for binary and text file distinctions.",
"main": "dist_ts/index.js",

View File

@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartmime',
version: '2.0.1',
version: '2.0.2',
description: 'A module for detecting MIME types with support for binary and text file distinctions.'
}

View File

@ -43,7 +43,7 @@ export const getEncoding = async (optionsArg: {
/**
* Synchronous version to get encoding based on the file extension
*/
export const getPathEncodingSync = (path: string): 'binary' | 'utf8' => {
export const getEncodingForPathSync = (path: string): 'binary' | 'utf8' => {
const mimeType = plugins.mime.getType(path);
return binaryMimeTypes.includes(mimeType) ? 'binary' : 'utf8';
};