Skip to content

Instantly share code, notes, and snippets.

@wjn
Forked from bzerangue/convert-number-to-word.rb
Created July 22, 2012 01:17
Show Gist options
  • Save wjn/3157853 to your computer and use it in GitHub Desktop.
Save wjn/3157853 to your computer and use it in GitHub Desktop.
Convert Number to Word - Sass Function
require 'sass'
require 'linguistics'
module Sass::Script::Functions
def convertNumberToWord(number)
assert_type number, :Number
Sass::Script::Number.new(number.value.convertNumberToWord.en.numwords)
end
declare :convertNumberToWord, :args => [:number]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment