1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-09-02 18:02:37 +02:00

Use one-line imports when possible. (#28467)

This commit is contained in:
XhmikosR
2019-03-13 14:55:53 +02:00
committed by GitHub
parent ff1788666f
commit 6aa475c82e
7 changed files with 7 additions and 21 deletions

View File

@@ -5,9 +5,7 @@
* --------------------------------------------------------------------------
*/
import {
jQuery as $
} from '../util/index'
import { jQuery as $ } from '../util/index'
import Polyfill from './polyfill'
/**

View File

@@ -5,9 +5,7 @@
* --------------------------------------------------------------------------
*/
import {
getUID
} from '../util/index'
import { getUID } from '../util/index'
/* istanbul ignore next */
const Polyfill = (() => {

View File

@@ -6,9 +6,7 @@
*/
import Polyfill from './polyfill'
import {
makeArray
} from '../util/index'
import { makeArray } from '../util/index'
/**
* ------------------------------------------------------------------------