Last active
October 3, 2017 06:11
-
-
Save sharmaabhinav/392f4016d27dde362e88c6ce1c5ca3db to your computer and use it in GitHub Desktop.
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
| const compose = (...fns) => (arg) => fns.reduce((composed, f) => f(composed), arg) | |
| const oneSecond = () => 1000 | |
| const getCurrentTime = () => new Date() | |
| const clear = () => { console.clear() } | |
| const log = (message) => { console.log(message) } | |
| const serializeClockTime = date => ({ | |
| hours: date.getHours(), | |
| minutes: date.getMinutes(), | |
| seconds: date.getSeconds() | |
| }) | |
| const civilianHours = clockTime => Object.assign({}, clockTime, { hours: clockTime.hours > 12 ? clockTime.hours - 12 : clockTime.hours }) | |
| const appendAMPM = clockTime => Object.assign({}, clockTime, {ampm: clockTime.hours >= 12? 'PM': 'AM'}) | |
| const display = target => time => { target(time) } | |
| const formatClock = format => time => format.replace('hh',time.hours).replace('mm', time.minutes).replace('ss', time.seconds).replace('tt', time.ampm) | |
| const convertToCivilianTime = clockTime => compose( | |
| appendAMPM, | |
| civilianHours | |
| )(clockTime) | |
| const startTicking = () => setInterval( compose( clear, | |
| getCurrentTime, | |
| serializeClockTime, | |
| convertToCivilianTime, | |
| formatClock('hh:mm:ss:tt'), | |
| display(log) | |
| ), | |
| oneSecond() | |
| ) | |
| startTicking() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment