1
0
mirror of https://github.com/Luzifer/vault-openvpn.git synced 2024-09-20 01:52:56 +00:00
vault-openvpn/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go
Knut Ahlers 2cbf5dd6ac
Update dependencies for using cobra
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-05-27 11:24:38 +02:00

15 lines
357 B
Go

// Copyright 2016 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build !go1.10
package bidirule
func (t *Transformer) isFinal() bool {
if !t.isRTL() {
return true
}
return t.state == ruleLTRFinal || t.state == ruleRTLFinal || t.state == ruleInitial
}