If this is happening in nodejs, it is due to the older version of nodejs. Update node by using,
1) Clear NPM’s cache:
1 |
<span class="pln">sudo npm cache clean </span><span class="pun">-</span><span class="pln">f</span> |
2) Install a little helper called ‘n’
1 |
<span class="pln">sudo npm install </span><span class="pun">-</span><span class="pln">g n</span> |
3) Install latest stable NodeJS version
1 |
<span class="pln">sudo n stable</span> |