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 mapObject (obj, fn) { | |
| const result = []; | |
| for (let key in obj) { | |
| let value = fn(obj[key], key); | |
| if (typeof value !== 'undefined') { | |
| result.push(value); | |
| } | |
| } | |
| return result; | |
| } |
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
| <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:400,300,100%7CRoboto+Slab:400,300,100%7CRoboto+Mono:400,300,100" media="not all" onload="if (media != 'all')media='all'"> |