UNPKG
@sir_wernich/taco-wrap
Version:
latest (1.0.8)
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
Takes a string and wraps it in taco emojis
github.com/SirWernich/taco-wrap
@sir_wernich/taco-wrap
/
dist
/
index.js
9 lines
•
260 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
default
= (
function
(
str
) {
if
(str && str.
trim
()) {
return
"\uD83C\uDF2E "
+ str +
" \uD83C\uDF2E"
; }
return
'🌮'
; });
//# sourceMappingURL=index.js.map