Skip to content

Instantly share code, notes, and snippets.

@flpms
Last active November 7, 2017 19:07
Show Gist options
  • Save flpms/963f8d0c662c1b6089113f3b8117ae73 to your computer and use it in GitHub Desktop.
Save flpms/963f8d0c662c1b6089113f3b8117ae73 to your computer and use it in GitHub Desktop.
let a = new RegExp(/country\,/, 'gi');
console.log(a.source);
a.source === 'country\,' // false
a.source == 'country\,' // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment