Built motion from commit 99feb03.|0.0.140
[motion.git] / public / bower_components / lodash / lib / main / build-doc.js
index 9756954..e405726 100644 (file)
@@ -33,13 +33,8 @@ var config = {
 };
 
 function postprocess(string) {
-  // Fix docdown bugs.
-  return string
-    // Repair the default value of `chars`.
-    // See https://github.com/eslint/doctrine/issues/157 for more details.
-    .replace(/\bchars=''/g, "chars=' '")
-    // Wrap symbol property identifiers in brackets.
-    .replace(/\.(Symbol\.(?:[a-z]+[A-Z]?)+)/g, '[$1]');
+  // Fix docdown bug by wrapping symbol property identifiers in brackets.
+  return string.replace(/\.(Symbol\.(?:[a-z]+[A-Z]?)+)/g, '[$1]');
 }
 
 /*----------------------------------------------------------------------------*/