archieve-projects/微信机器人/node_modules/cmd-ts/dist/esm/from.js

11 lines
195 B
JavaScript
Executable File

/**
* A type "conversion" from any type to itself
*/
export function identity() {
return {
async from(a) {
return a;
},
};
}
//# sourceMappingURL=from.js.map