-
-
Save dom96/406341ad69ac8954fd7be81d87679cfb 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
| var res = xmlseq.map( | |
| proc (item: XMLNode): any = | |
| item | |
| .child("itunes:duration") | |
| .innerText | |
| .split(":") | |
| .map(parseInt) | |
| .reversed | |
| .concat(@[0,0]) | |
| ).map(...) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment