chore: prettier markdown files

This commit is contained in:
chenjiahan
2020-04-02 15:39:06 +08:00
parent 2fb5cca49a
commit d48cd73adb
10 changed files with 105 additions and 121 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ export function mockGetBoundingClientRect(
Element.prototype.getBoundingClientRect = <any>jest.fn(() => rect);
return function() {
return function () {
Element.prototype.getBoundingClientRect = originMethod;
};
}
+1 -1
View File
@@ -9,7 +9,7 @@ Vue.component('transition', TransitionStub as any);
// promisify setTimeout
export function later(delay: number = 0): Promise<void> {
return new Promise(resolve => {
return new Promise((resolve) => {
setTimeout(resolve, delay);
});
}