Tags: forkme7/ecma262
Tags
Editorial: Fix a trivial typo (toLocalString → toLocaleString) (tc39#628 )
Editorial: Check for duplicate own keys in for-in example code Fixes tc39#387.
Editorial: Fix unintentional normative changes from tc39#266 / 5512445 Per tc39#266 (comment).
Editorial: Consistently style lists with spaces inside
var fs = require('fs');
var spec = fs.readFileSync('./spec.html', 'utf8');
spec = spec.replace(/(«)(.*?)(»)/g, function (match, start, contents, end) {
if (match.trim().length === 0) {
contents = " ";
} else {
if (contents[0] !== " ") {
contents = " " + contents;
}
if(contents[contents.length - 1] !== " ") {
contents = contents + " ";
}
}
return start + contents + end;
})
fs.writeFileSync('./spec.html', spec);
Merge pull request tc39#222 from maxogden/patch-1 add 64-bit integer operations entry to stage 0 proposals table
Markup: Fix whitespace after pre tags, add syntax highlighting
Update callconstructor.md fixed typo in second champions name
Merge pull request tc39#61 from bterlson/contributing Add contributing document