UNPKG
mop-cli
Version:
latest (0.3.0)
0.3.0
0.2.0
0.1.0
Lint and maintain many projects at once
github.com/sholladay/mop-cli
sholladay/mop-cli
mop-cli
/
lib
/
human-title.js
11 lines
(7 loc)
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
'use strict'
;
const
humanize =
require
(
'humanize-string'
);
const
titleize =
require
(
'titleize'
);
const
humanTitle
= (
str
) => {
return
titleize
(
humanize
(str)); };
module
.
exports
= humanTitle;