|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
505 bytes
|
| Line | |
|---|
| 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | /**
|
|---|
| 4 | * Codec for webpack generated bootstrap code.
|
|---|
| 5 | * @type {{name:string, decode:function, abstract:boolean}}
|
|---|
| 6 | */
|
|---|
| 7 | module.exports = {
|
|---|
| 8 | name : 'webpackBootstrap',
|
|---|
| 9 | decode : decode,
|
|---|
| 10 | abstract: true
|
|---|
| 11 | };
|
|---|
| 12 |
|
|---|
| 13 | /**
|
|---|
| 14 | * Validate the given uri (abstract).
|
|---|
| 15 | * @this {{options: object}} A loader or compilation
|
|---|
| 16 | * @param {string} uri A source uri to decode
|
|---|
| 17 | * @returns {boolean|string} False where unmatched else True
|
|---|
| 18 | */
|
|---|
| 19 | function decode(uri) {
|
|---|
| 20 | return /^webpack\/bootstrap\s+\w{20}$/.test(uri);
|
|---|
| 21 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.