UNPKG

sussy-util

Version:
13 lines (12 loc) 412 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Converts the provided value to undefined and returns it. * @template T - The type of the value to convert. * @param {T} sus - The value to convert. * @returns {undefined} The converted value, which is always undefined. */ const convertToUndefined = (sus) => { return void (sus); }; exports.default = convertToUndefined;