UNPKG
duckengine
Version:
latest (2.1.0)
2.1.0
2.0.1
2.0.0
1.2.1
1.2.0
1.1.2-beta
1.1.1-beta
1.1.0
1.1.0-beta
1.0.1
1.0.1-beta
1.0.0
1.0.0-beta
A 2D Game Engine for the web.
github.com/ksplatdev/DuckEngine
ksplatdev/DuckEngine
duckengine
/
src
/
helper
/
color
/
isHex.ts
4 lines
(3 loc)
•
109 B
text/typescript
View Raw
1
2
3
4
export
default
function
isHex
(
str
:
string
):
boolean
{
return
/^#[0-9A-F]{6}|#[0-9A-F]{3}$/i
.
test
(str); }