This file contains 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
/** | |
* CSS escape shim that works in both node and the browser. | |
* | |
* see: https://github.com/mathiasbynens/CSS.escape/blob/master/css.escape.js | |
*/ | |
export function escape(sel) { | |
const result = []; | |
for (const [index, letter] of Array.from(sel).entries()) { | |
const charCode = letter.charCodeAt(0); |
This file contains 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 Service, { inject as service } from '@ember/service'; | |
import fetch, { Request } from 'fetch'; | |
import config from 'ember-foo/config/environment'; | |
export default class FetchService extends Service { | |
@service session; | |
headers() { | |
const headers = {}; | |
const token = this.session.data.authenticated.token || config.token; |