Welcome to mirror list, hosted at ThFree Co, Russian Federation.

my_custom_functions_setter.js « extras « fixtures « test « node-sass « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9ec8c24e51dc58d2640d6d960adbff7221afe580 (plain)
1
2
3
4
5
6
7
8
9
10
module.exports = {
  'foo($a)': function(size) {
    size.setUnit('rem');
    return size;
  },
  'bar($a)': function(size) {
    size.setValue(size.getValue() * 2);
    return size;
  }
};