mirror of
https://github.com/twbs/bootstrap.git
synced 2025-01-18 10:52:19 +01:00
f3aed77dc7
Move babel whitelist helpers to a common file
14 lines
217 B
JavaScript
14 lines
217 B
JavaScript
'use strict'
|
|
|
|
// These are the babel helpers we whitelist
|
|
const helpers = [
|
|
'createClass',
|
|
'createSuper',
|
|
'defineProperties',
|
|
'defineProperty',
|
|
'inheritsLoose',
|
|
'objectSpread2'
|
|
]
|
|
|
|
module.exports = helpers
|