1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-22 23:12:52 +02:00

Normalize the whole document in benchmarks

This commit is contained in:
Samy Pessé
2016-11-03 11:02:57 +01:00
parent 8bc8e45087
commit a3b7b0789f
3 changed files with 3 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
module.exports = { module.exports = {
run(state) { run(state) {
return state.transform().normalize().apply() return state.transform({ normalized: false }).normalize().apply()
} }
} }

View File

@@ -1,6 +1,6 @@
module.exports = { module.exports = {
run(state) { run(state) {
return state.transform().normalize().apply() return state.transform({ normalized: false }).normalize().apply()
} }
} }

View File

@@ -1,6 +1,6 @@
module.exports = { module.exports = {
run(state) { run(state) {
return state.transform().normalize().apply() return state.transform({ normalized: false }).normalize().apply()
} }
} }