Dan Dascalescu
Developer Advocate at Google. Meteor.js engineer. Founded Blueseed, the startup community on a ship.
Dan Dascalescu / @dandv
iDoRecall, Inc.
2015-Jul-30
function normalizeEmail(email) {
var emailParts = email.split(/@/);
var user = emailParts[0];
var domain = emailParts[1];
user.replace(/\./g, '');
user = user.split('+')[0];
return user + '@' + domain;
}
"Prior art (state of the art or background art), [...], constitutes all information that has been made available to the public [...] that might be relevant to a patent's claims of originality."
By Dan Dascalescu
Always mention the prior art!
Developer Advocate at Google. Meteor.js engineer. Founded Blueseed, the startup community on a ship.