UNPKG
meblog
Version:
latest (2.2.3)
2.2.3
2.2.2
2.2.1
2.2.0
2.1.2
2.1.1
2.1.0
2.0.0
1.0.4
1.0.3
1.0.2
1.0.1
A simple blog engine for personal blogging
github.com/sinzii/meblog
sinzii/meblog
meblog
/
lib
/
core
/
util
/
StringUtils.d.ts
7 lines
(6 loc)
•
216 B
TypeScript
View Raw
1
2
3
4
5
6
7
import { Tag }
from
'../model'
; export
default
class
StringUtils
{
static
collectTags
(
source:
string
|
string
[]
): Tag[]
;
static
capitalize
(
str:
string
):
string
;
static
trimSlashes
(
str:
string
):
string
; }