Created
September 27, 2018 19:22
-
-
Save neilkimmett/63f0b03be40735038edc0f661874aefd to your computer and use it in GitHub Desktop.
This file contains 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
module.exports = theo => { | |
theo.registerFormat('ios.color.swift', result => { | |
const colors = [] | |
return [ | |
'import UIKit', | |
'', | |
'extension UIColor {', | |
...colors, | |
'}' | |
].join('\n'); | |
}); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment