cmark

My personal build of CMark ✏️

Commit
f37efa9f0d4085ac21b528135184517e6c4e4cb3
Parent
94fe2650b080b9511d7fbe7f64c02326e90d319a
Author
John MacFarlane <jgm@berkeley.edu>
Date

Fixed linter errors.

Diffstat

1 file changed, 7 insertions, 7 deletions

Status File Name N° Changes Insertions Deletions
Modified js/lib/node.js 14 7 7
diff --git a/js/lib/node.js b/js/lib/node.js
@@ -93,31 +93,31 @@ Node.prototype.isContainer = function() {
 };
 
 Object.defineProperty(proto, 'type', {
-    get: function() { return this._type; },
+    get: function() { return this._type; }
 });
 
 Object.defineProperty(proto, 'firstChild', {
-    get: function() { return this._firstChild; },
+    get: function() { return this._firstChild; }
 });
 
 Object.defineProperty(proto, 'lastChild', {
-    get: function() { return this._lastChild; },
+    get: function() { return this._lastChild; }
 });
 
 Object.defineProperty(proto, 'next', {
-    get: function() { return this._next; },
+    get: function() { return this._next; }
 });
 
 Object.defineProperty(proto, 'prev', {
-    get: function() { return this._prev; },
+    get: function() { return this._prev; }
 });
 
 Object.defineProperty(proto, 'parent', {
-    get: function() { return this._parent; },
+    get: function() { return this._parent; }
 });
 
 Object.defineProperty(proto, 'sourcepos', {
-    get: function() { return this._sourcepos; },
+    get: function() { return this._sourcepos; }
 });
 
 Object.defineProperty(proto, 'literal', {