- 1 (7.5 ounce) package Chebe Bread All-Purpose Mix
- 4 ounces (1/2 cup) millet flour, plus extra for dusting
- 4 ounces (1/2 cup) gluten-free corn flour
- 2 teaspoons baking powder
- 1 cup water
- 2 large eggs
- 3 tablespoons olive oil
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
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) { |
- 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
// 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
(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
"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() { | |
"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
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
var types = require('ast-types'); | |
var n = types.namedTypes; | |
var esprima = require('esprima'); | |
function printCommentsAndNode(ast, calculatePositionOffset) { | |
ast.comments.forEach(function(comment) { | |
if (comment.type !== 'Block' || comment.value[0] !== '*') { return; } | |
var associatedNode = findAssociatedNodeInAstForComment(ast, comment, calculatePositionOffset); | |
console.log('COMMENT'); |