Skip to content

Commit b9db1e5

Browse files
committed
Remove file-overview comments
1 parent d00bf8f commit b9db1e5

File tree

2 files changed

+2
-27
lines changed

2 files changed

+2
-27
lines changed

index.js

+2-19
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
/**
2-
* @author Titus Wormer
3-
* @copyright 2016 Titus Wormer
4-
* @license MIT
5-
* @module hastscript
6-
* @fileoverview Hyperscript compatible DSL for creating
7-
* virtual HAST trees.
8-
*/
9-
101
'use strict';
112

123
/* Dependencies. */
@@ -19,16 +10,8 @@ var commas = require('comma-separated-tokens').parse;
1910
/* Expose. */
2011
module.exports = h;
2112

22-
/**
23-
* Hyperscript compatible DSL for creating virtual HAST
24-
* trees.
25-
*
26-
* @param {string?} selector - Simple CSS selector to parse.
27-
* @param {Object?} properties - HTML attributes to add.
28-
* @param {string|Array.<string|Node>} children - List of
29-
* children to add.
30-
* @return {Node} - HAST node.
31-
*/
13+
/* Hyperscript compatible DSL for creating virtual HAST
14+
* trees. */
3215
function h(selector, properties, children) {
3316
var node = parseSelector(selector);
3417
var property;

test.js

-8
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,3 @@
1-
/**
2-
* @author Titus Wormer
3-
* @copyright 2016 Titus Wormer
4-
* @license MIT
5-
* @module hastscript
6-
* @fileoverview Test suite for `hastscript`.
7-
*/
8-
91
'use strict';
102

113
/* Dependencies. */

0 commit comments

Comments
 (0)