feat: add core-js

Signed-off-by: MiaoWoo <admin@yumc.pw>
This commit is contained in:
MiaoWoo 2020-02-09 22:06:45 +08:00
parent 568f723c06
commit 61195accc9
6 changed files with 37 additions and 35 deletions

View File

@ -1,5 +1,4 @@
import '@ms/ployfill' /// <reference types='@ms/ployfill' />
export * from './task' export * from './task'
export * from './event' export * from './event'
export * from './console' export * from './console'

View File

@ -17,7 +17,8 @@
"test": "echo \"Error: run tests from root\" && exit 1" "test": "echo \"Error: run tests from root\" && exit 1"
}, },
"dependencies": { "dependencies": {
"@ms/nashorn": "^0.1.0" "@ms/nashorn": "^0.1.0",
"core-js": "^3.6.4"
}, },
"devDependencies": { "devDependencies": {
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.1.13",

View File

@ -0,0 +1,26 @@
// ES2015 String ployfill must force overwrite to js method
Object.defineProperty(String.prototype, 'contains', {
value: require(`es5-ext/string/#/contains/shim`),
configurable: true,
enumerable: false,
writable: true
})
Object.defineProperty(String.prototype, 'repeat', {
value: require(`es5-ext/string/#/repeat/shim`),
configurable: true,
enumerable: false,
writable: true
})
Object.defineProperty(String.prototype, 'startsWith', {
value: require(`es5-ext/string/#/starts-with/shim`),
configurable: true,
enumerable: false,
writable: true
})
Object.defineProperty(String.prototype, 'endsWith', {
value: require(`es5-ext/string/#/ends-with/shim`),
configurable: true,
enumerable: false,
writable: true
})

View File

@ -1,19 +1,10 @@
import './global' /// <reference path="./global.ts" />
import '@ms/nashorn' /// <reference types='@ms/nashorn' />
import { Proxy } from './proxy'
import { XMLHttpRequest } from './xml-http-request'
let ployfillStartTime = new Date().getTime(); let ployfillStartTime = new Date().getTime();
console.info('Initialization Java Nashorn ployfill. Please wait...'); console.info('Initialization Java Nashorn ployfill. Please wait...');
// String contains ployfill require('./es5-ext');
Object.defineProperty(String.prototype, 'contains', { require('core-js');
value: function(searchString: string, position: number) { global.setGlobal('Proxy', require('./proxy').Proxy)
return String.prototype.indexOf.call(this, searchString, position) > -1; global.setGlobal('XMLHttpRequest', require('./xml-http-request').XMLHttpRequest)
} global.setGlobal('Blob', require('blob-polyfill').Blob)
})
// ES6 Map Symbol ployfill
require('es6-map/implement');
require('es6-symbol/implement');
global.setGlobal('Proxy', Proxy)
global.setGlobal('XMLHttpRequest', XMLHttpRequest)
console.info('Java Nashorn ployfill loading completed... Cost (' + (new Date().getTime() - ployfillStartTime) / 1000 + 's)!'); console.info('Java Nashorn ployfill loading completed... Cost (' + (new Date().getTime() - ployfillStartTime) / 1000 + 's)!');

View File

@ -1,3 +1,4 @@
// Nashorn JSAdapter See https://wiki.openjdk.java.net/display/Nashorn/Nashorn+extensions#Nashornextensions-JSAdapterconstructor
let createProxy = eval(` let createProxy = eval(`
function(handle){ return new JSAdapter(handle) } function(handle){ return new JSAdapter(handle) }
`) `)

View File

@ -138,22 +138,6 @@ export class MiaoChat extends interfaces.Plugin {
private PlaceholderAPI: { setPlaceholders: (player: any, str: string) => string }; private PlaceholderAPI: { setPlaceholders: (player: any, str: string) => string };
load() { load() {
if (!Object.values) {
Object.defineProperty(Object, "values", {
enumerable: false,
configurable: true,
writable: true,
value: function(target) {
"use strict";
var values = [];
for (var key in target) {
var desc = Object.getOwnPropertyDescriptor(target, key);
if (desc !== undefined && desc.enumerable) values.push(target[key]);
}
return values;
}
});
}
this.chatFormats = Object.values(this.config.ChatFormats); this.chatFormats = Object.values(this.config.ChatFormats);
this.chatFormats.sort(this.compare('index')); this.chatFormats.sort(this.compare('index'));
this.initFormat(this.chatFormats); this.initFormat(this.chatFormats);