index
:
greatoffice
master
My take/showcase on a business management system
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
apps
/
kit
/
src
/
params
/
integer.ts
blob: 6e36cd8c301e40a05521854970cf5d65fcff0935 (
plain
) (
blame
)
1
2
3
export
function
match
(
param
:
string
)
:
boolean
{
return
/^\d+$/
.
test
(
param
);
}