Skip to content

Commit

Permalink
/^[23]g$/ is the new /^(?:2g|3g)$/.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathiasbynens committed Dec 6, 2011
1 parent c0b9620 commit 3e27e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion feature-detects/network-connection.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ Modernizr.addTest('lowbandwidth', function() {

return connection.type == 3 // connection.CELL_2G
|| connection.type == 4 // connection.CELL_3G
|| /^(?:2g|3g)$/.test(connection.type); // string value in new spec
|| /^[23]g$/.test(connection.type); // string value in new spec
});

0 comments on commit 3e27e8a

Please sign in to comment.