Skip to content

Instantly share code, notes, and snippets.

@matthieusieben
matthieusieben / octothorpe.module.js
Last active February 10, 2017 13:46
Chile component controller reference for angular 1.x
const camelCase = (text) => text
.toLowerCase()
.replace(/-+(.)/g, (_, letter) => letter.toUpperCase())
const getControllerScope = (scope) =>
Object.getPrototypeOf(scope) === Object.getPrototypeOf(scope.$root)
? scope
: scope.$parent
/**