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