Skip to content

Instantly share code, notes, and snippets.

/* 0 */
/***/ function(module, exports) {
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var hello = exports.hello = function hello() {
console.log('hello');
export const hello = () => {
console.log('hello')
}
export const yey = () => {
console.log('yey')
}
/* 0 */
/***/ function(module, exports) {
'use strict';
var hello = function hello() {
console.log('hello');
};
module.exports = hello;
const hello = () => {
console.log('hello')
}
module.exports = hello
var hello = exports.hello = function hello() {
console.log('hello');
};
Object.defineProperty(exports, "__esModule", {
value: true
});
/* 0 */
/***/ function(module, exports) {
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var hello = exports.hello = function hello() {
console.log('hello');
/******/ (function(modules) { // webpackBootstrap
/******/ // The module cache
/******/ var installedModules = {};
/******/ // The require function
/******/ function __webpack_require__(moduleId) {
/******/ // Check if module is in cache
/******/ if(installedModules[moduleId])
/******/ return installedModules[moduleId].exports;
export const hello = () => {
console.log('hello')
}
const a = 'hello'