Fixed 267U.pre2
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
export function just(value) {
|
||||
return {
|
||||
isJust: ()=>true,
|
||||
get: ()=>value
|
||||
};
|
||||
}
|
||||
export function nothing() {
|
||||
return {
|
||||
isJust: ()=>false
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user