repo.or.cz
/
ProtonMail-WebClient.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use source loader for email sprite icons
[ProtonMail-WebClient.git]
/
packages
/
utils
/
unary.ts
blob
c0e290a7a818c39b975fb5053966f15dc0aecb2a
1
/**
2
* Wrap a function to ensure only one argument will pass through
3
*/
4
export default function unary<A, B>(fn: (...args: any) => B) {
5
return (arg: A) => fn(arg);
6
}