- 2 5/8 C brown rice flour
- 3/4 C regular rolled oats
- 2 t baking soda
- 3/4 t baking powder
- 3/4 t salt
- 1 1/2 t xanthan gum
- 3/8 C (3/4 stick) butter
- 1/2 C virgin coconut oil
- 3/8 C sugar
- 1 1/8 C packed brown sugar
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
import { | |
objectOrFunction, | |
isFunction | |
} from './utils'; | |
import asap from './asap'; | |
function noop() {} | |
var PENDING = void 0; |
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
(function() { | |
"use strict"; | |
function $$rsvp$events$$indexOf(callbacks, callback) { | |
for (var i=0, l=callbacks.length; i<l; i++) { | |
if (callbacks[i] === callback) { return i; } | |
} | |
return -1; | |
} |
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
"use strict"; | |
exports.incr = incr; | |
var __esBindingListeners = []; | |
function __esBindingSet(name, value) { | |
exports[name] = value; | |
for (var i = 0, l = __esBindingListeners.length; i < l; i++) { | |
__esBindingListeners[i](name, value); | |
} |
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
(function() { | |
function objectOrFunction(x) { | |
return typeof x === 'function' || (typeof x === 'object' && x !== null); | |
} | |
function isFunction(x) { | |
return typeof x === 'function'; | |
} | |
function isMaybeThenable(x) { |
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
// index.js | |
require('babel/register')({ only: /tests/ }); | |
require('./tests'); |
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
import { nodes } from 'coffee-script'; | |
import { createReadStream } from 'fs'; | |
import MagicString from 'magic-string'; | |
class LineColumnMap { | |
constructor(source) { | |
this.offsets = this.constructor.getLineOffsets(source); | |
} | |
getOffsetForLineAndColumn(line, column) { |
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
Show hidden characters
{ | |
"presets": ["es2015"] | |
} |
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
/* eslint-disable no-invalid-this, no-extend-native */ | |
import Ember from 'ember'; | |
/** | |
* Getter/Setter Computed Property Function Deprecation | |
* | |
* In Ember 1.12 a deprecation was added for creating a computed property with | |
* a function that acted as both a getter and a setter: | |
* |