UNPKG
mdtocs
Version:
latest (1.0.5)
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.0
Markdown table of contents generator.
remarkablemark.org/mdtocs/
remarkablemark/mdtocs
mdtocs
/
cjs
/
utils
/
validate.js
10 lines
(9 loc)
•
269 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
exports
.
validate
= validate;
function
validate
(
markdown
) {
if
(
typeof
markdown !==
'string'
) {
throw
new
TypeError
(
'First argument must be a string'
); }
return
markdown; }