This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <style> | |
| /* W3.CSS 4.10 February 2018 by Jan Egil and Borge Refsnes */ | |
| html{box-sizing:border-box}*,*:before,*:after{box-sizing:inherit} | |
| /* Extract from normalize.css by Nicolas Gallagher and Jonathan Neal git.io/normalize */ | |
| html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%} | |
| body{margin:0} | |
| article,aside,details,figcaption,figure,footer,header,main,menu,nav,section,summary{display:block} | |
| audio,canvas,progress,video{display:inline-block} | |
| progress{vertical-align:baseline} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function productSorter(a, b){ | |
| try{ | |
| a = extractNum(a); | |
| b = extractNum(b) | |
| return a - b; | |
| }catch(err){ | |
| console.error(err.name, err.message) |
NewerOlder